{% extends "admin/base_site.html" %} {% load i18n static %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block content_title %} {% trans 'dashboard' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if app_list %} {% widthratio app_list|length 2 1 as middle %}
{% for app in app_list %}

{{ app.name }}

{% for model in app.models %} {% endfor %}
{% if model.admin_url %} {{ model.name }} {% else %} {{ model.name }} {% endif %}
{% if model.add_url %} {% trans 'Add' %} {% endif %} {% if model.admin_url %} {% if model.view_only %} {% trans 'View' %} {% else %} {% trans 'Change' %} {% endif %} {% endif %}
{% if forloop.counter == middle|add:"0" %}
{% endif %} {% endfor %}
{% else %}
{% trans "You don't have permission to view or edit anything." %}
{% endif %}
{% endblock %}