{% extends "admin:admin/index.html" %} {% comment %} * Load FontAwesome CSS. * Style app list with featured apps. * Remove sidebar. {% endcomment %} {% load i18n admin_static dashboard_tags compress %} {% block content_title %}{% endblock %} {% block stylesheet %}{% endblock %} {% block extrahead %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock %} {% block content %}
{% for app in app_list|filter_featured_apps:request %}
{% include "admin/dashboard_widgets/featured_app.html" with app=app %}
{% endfor %}
{% include "admin/dashboard_widgets/recent_actions.html" %}
{% include "admin/dashboard_widgets/assigned_to_me.html" %}
{% with app_list|filter_sorted_apps:request as sorted_app_list %} {% if sorted_app_list %}

{{ title }}

{% for column in sorted_app_list|partition_app_list:4 %}
    {% for app in column %}
  • {% if app.app_url %} {{ app.name }} {% else %} {{ app.name }} {% endif %}
  • {% for model in app.models %}
  • {% if model.admin_url %} {{ model.name }} {% else %} {{ model.name }} {% endif %}

      {% if model.add_url %}
    • {% endif %}
  • {% endfor %} {% endfor %}
{% endfor %}
{% endif %} {% endwith %}
{% endblock %} {% block sidebar %}{% endblock %}