{% extends "admin/base_site.html" %} {% load i18n %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ app_list|first|first }}

{% if app_list %} {% for app in app_list %}

{{ app.name }}

{% for model in app.models %}
{% if model.admin_url %} {{ model.name }} {% else %} {{ model.name }} {% endif %}
{% if model.description %}
{{ model.description|striptags }}
{% endif %}
{% if model.add_url %} {% trans 'Add' %} {% endif %} {% if model.admin_url %} {% trans 'Change' %} {% endif %}
{% endfor %}
{% endfor %} {% else %}

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

{% endif %}
{% endblock %}