{% extends "admin/base_site.html" %} {% load i18n static bootstrapped_goodies_tags %} {% block breadcrumbs %} {% endblock %} {% block object-tools %} {% endblock %} {% block content %}
{% for app in app_list %} {% include "admin/bootstrapped_extra/app_name.html" %} {% render_app_description app %} {% for model in app.models %} {% endfor %}
{% if model.admin_url %} {{ model.name }} {% else %} {{ model.name }} {% endif %} {% if model.add_url or model.admin_url%}
{% if model.add_url %} {% trans 'Add' %} {% endif %} {% if model.admin_url %} {% trans 'Edit' %} {% endif %}
{% endif %}
{% empty %}

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

{% endfor %}
{% endblock %}