{% extends "admin/base_site.html" %} {% load i18n static jazzmin %} {% get_jazzmin_ui_tweaks as jazzmin_ui %} {% 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 %} {% if forloop.counter0|divisibleby:"2" %}
{% endif %}
{% with model=app.models|first %} {{ model.name }} {% endwith %}
{% if not forloop.counter0|divisibleby:"2" %}
{% endif %} {% endfor %}
{% endblock %}