{% extends "admin/base_site.html" %} {% load i18n log pipeline rbadmintags staticfiles %} {% block coltype %}colM{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block jsconsts %} {{block.super}} var SUPPORT_DATA = '{{support_data|escapejs}}'; {% endblock %} {% block scripts-post %} {{block.super}} {% javascript 'admin-dashboard' %} {% endblock %} {% block content_title %}{% endblock %} {% block content %}
{% for widget in selected_primary_widgets %} {% admin_widget widget %} {% endfor %}
{% for widget in selected_secondary_widgets %} {% admin_widget widget %} {% endfor %}
{% for widget in unselected_primary_widgets %} {% endfor %}

{% trans "You have added all available large widgets." %}

{% for widget in unselected_secondary_widgets %} {% if not forloop.counter|divisibleby:2 %} {% endif %} {% if forloop.counter|divisibleby:2 %} {% endif %} {% endfor %}

{% trans "You have added all available small widgets." %}

{% for widget in primary_widgets %} {% admin_widget widget %} {% endfor %}
{% for widget in secondary_widgets %} {% admin_widget widget %} {% endfor %}
{% for widget in primary_widgets %}
{% endfor %}
{% for widget in secondary_widgets %}
{% endfor %}

{% endblock %}