{% extends "admin/base_site.html" %} {% load i18n staticfiles %} {% block stylesheets %} {{ block.super }} {% endblock %} {% block javascripts %} {{ block.super }} {% endblock %} {% block coltype %}colMS{% endblock %} {% block bodyclass %}dashboard{% endblock %} {% block breadcrumbs %}{% endblock %} {% block content %}
{% if app_list or group_list %} {% if group_list %} {% for k,v in group_list.items %} {% if v.applications %}
{% if v.name %}

{{ v.name }}

{% endif %} {% if v.show_apps %} {% for app in v.applications %}
{% if v.show_apps %}{% endif %} {% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{% trans app.name %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endfor %} {% else %}
{% for app in v.applications %} {% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endfor %}
{% endif %}
{% endif %} {% endfor %} {% endif %} {% if app_list %}
{% for app in app_list %}
{% for model in app.models %} {% if model.perms.change %} {% else %} {% endif %} {% if model.perms.add %} {% else %} {% endif %} {% if model.perms.change %} {% else %} {% endif %} {% endfor %}
{% trans app.name %}
{{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
{% endfor %}
{% endif %} {% else %}

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

{% endif %}
{% endblock %} {% block sidebar %} {% endblock %}