{% extends "admin/base_site.html" %} {% load i18n static dashub %} {% block bodyclass %}{{ block.super }} dashboard{% endblock %} {% block content_title %} {% trans 'Dashboard' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% get_side_menu using="app_list" as dashboard_list %} {% if dashboard_list %} {% widthratio dashboard_list|length 2 1 as middle %} {% endif %}
{% for app in dashboard_list %} {% for model in app.models %} {% if model.count >= 0 %}

{{ model.name }}

{{ model.count }}

{% endif %} {% endfor %} {% endfor %}
{% endblock %}