{% extends "admin/base_site.html" %} {% load i18n static admin_list %} {% block page_heading %} {% trans 'Dashboard' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans 'Total Models' %}

{% with total=app_list|length %}{{ total }}{% endwith %}

{% trans 'Applications' %}

{% with count=app_list|length %}{{ count }}{% endwith %}

{% trans 'Welcome' %}

{{ user.get_full_name|default:user.username }}

{% trans 'Role' %}

{% if user.is_superuser %}{% trans 'Superuser' %}{% else %}{% trans 'Staff' %}{% endif %}

{% for app in app_list %}
{{ app.name }}
{{ app.models|length }} {% trans 'models' %}
{% for model in app.models %}
{{ model.name }}

{% if model.add_url %} {% trans 'Add' %} {% endif %}

{% if model.admin_url %} {% endif %} {% if model.add_url %} {% endif %}
{% endfor %}
{% empty %}
{% trans 'No applications available' %}

{% trans 'You don\'t have permission to view any models.' %}

{% endfor %}
{% if user.is_superuser %}
{% endif %} {% endblock %}