{% load i18n static %} {% load custom_tags %}
{% url 'admin:index' as index_page %} {% if app_list %} {# Show "Expand all/Collapse all" button only on index page #} {% if request.get_full_path == index_page %} Expand all {% endif %} {% for app in app_list %}
{# Apply custom classes for "caption" and "tbody" #} {% if request.get_full_path == index_page %} {% else %} {% endif %} {% for model in app.models %} {% if model.admin_url %} {% else %} {% endif %} {% if model.add_url %} {% else %} {% endif %} {% if model.admin_url %} {% else %} {% endif %} {% endfor %}
{{ app.name }}
{{ app.name }}{{ app.help_text }}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endfor %} {% else %}

{% trans "You don't have permission to edit anything." %}

{% endif %}