{% extends "admin/base_site.html" %} {% load i18n admin_static %} {% load customadmin %} {% block extrastyle %}{{ block.super }}{% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %} {% if app_list %} {% if CUSTOM_ADMIN.view_mode == "use_app_icons" and app_list|length > 1 %} {% include "admin/use_app_icons.html" %} {% else %} {% if CUSTOM_ADMIN.view_mode == "use_app_and_model_icons" and app_list|length > 1 %} {% include "admin/use_app_icons.html" %} {% else %} {% if CUSTOM_ADMIN.view_mode == "use_app_and_model_icons" and app_list|length == 1 %} {% include "admin/use_model_icons.html" %} {% else %} {% if CUSTOM_ADMIN.view_mode == "use_custom_app" and app_list|length > 1 %} {% include "admin/use_custom_app.html" %} {% else %} {% if CUSTOM_ADMIN.view_mode == "use_model_icons" %} {% include "admin/use_model_icons.html" %} {% else %} {% if CUSTOM_ADMIN.view_mode == "use_total_model_icons" %} {% include "admin/use_total_model_icons.html" %} {% else %} {% include "admin/admin_default.html" %} {% endif %}{% endif %}{% endif %}{% endif %}{% endif %}{% endif %} {% else %}

{% trans "You don't have permission to edit anything." %}

{% endif %} {% endblock %} {% block sidebar %} {% if not CUSTOM_ADMIN or CUSTOM_ADMIN.use_log_sidebar %}
{% endif %} {% endblock %}