Code Monkey home page Code Monkey logo

Comments (4)

vdboor avatar vdboor commented on May 29, 2024

Hi!

thanks for dropping a note.

The language tabs are displayed in the template, using parler/templates/admin/parler/language_tabs.html

These will only be displayed when:

  • the model inherits from TranslatableModel
  • the change_form_template somehow loads admin/parler/change_form.html.

Perhaps something is overwritten there?

If you use custom admin change_form.html templates, you can either let them inherit admin/parler/change_form.html, or copy-paste the language tabs in your template:

{% block object-tools %}{{ block.super }}
{% if language_tabs %}{% include "admin/parler/language_tabs.html" %}{% endif %}
{% endblock %}

Best regards,
Diederik

from django-parler.

Edke avatar Edke commented on May 29, 2024

Very grateful for your tips, I hacked for a minute and found out that $language_tabs was empty in my template. And then it came easy from this, I was using site_id in my settings but forgot about that. So just adding key to list of languages, from None to 1, and it get populated again.

Now it's working, yey and I can continue investigating and evaluating if suitable in exchange for django-hvad. Looks great so far.

One note: your app is working out of the box with django-suit, which is best template for Django admin I know. Good job!

from django-parler.

vdboor avatar vdboor commented on May 29, 2024

thanks! great to hear. If you have any questions (or improvements), please let me know!

from django-parler.

Hedde avatar Hedde commented on May 29, 2024

For those interested here's a snippet to fancy up the django-suit implementation (no static files required).. I removed the delete links, but it's easy to opt them back in with a nice bootstrap icon or whatever suits you :-)

{% if language_tabs %}
    <h4 class="italic-title">{% trans "Languages" %}</h4>
    <ul class="box menu-box">
        {% for url,name,code,status in language_tabs %}
            {% if status == 'current' %}
                  <input type="hidden" class="language_button selected" name="{{ code }}" />
                  <li class="current" style="font-weight: bold;">
                    <a><i class="icon-ok icon-alpha75"></i> {{ name }}</a>
                  </li>
            {% else %}
                <li class="{{ status }}">
                    <a href="{{ url }}">{{ name }}</a>
                </li>
            {% endif %}
        {% endfor %}
    </ul>
{% endif %}

from django-parler.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.