{% 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 %}
{% get_dashub_settings request as dashub_settings %} {% if dashub_settings.analytics_template %} {% include dashub_settings.analytics_template with dashboard_list=dashboard_list %} {% endif %} {% if dashub_settings.include_dashboard_list %}
{% for app in dashboard_list %}
{{ app.name }}
{% for model in app.models %}

{{ model.name }}

{{ model.count }}
{% endfor %}
{% endfor %}
{% endif %}
{% endblock %}