{% extends "admin/base_site.html" %}
{% load url from future %}
{% load admin_list i18n grp_tags %}
{% block stylesheets %}
{{ block.super }}
{{ media.css }}
{% endblock %}
{% block javascripts %}
{{ block.super }}
{{ media.js }}
{% if import_action %}
{% endif %}
{% if cl.formset or action_form %}
{% url 'admin:jsi18n' as jsi18nurl %}
{% endif %}
{% if action_form %}
{% endif %}
{% if cl.formset %}
{% endif %}
{% endblock %}
{% block bodyclass %}grp-change-list{% endblock %}
{% block content-class %}{% endblock %}
{% block breadcrumbs %}
{% if not is_popup %}
-
-
-
{{ cl.opts.verbose_name_plural|capfirst }} | |
{% endif %}
{% endblock %}
{% block content_title %}
{{ cl.opts.verbose_name_plural|capfirst }}
{% endblock %}
{% block object-tools %}
{% endblock %}
{% block content %}
{% if import_action %}
{% endif %}
{% if cl.search_fields or cl.has_filters or cl.date_hierarchy %}
{% if cl.has_filters or cl.search_fields %}
{% block aside %}
{% endblock %}
{% endif %}
{% block pagination_top %}
{% pagination cl %}
{% endblock %}
{% block date_hierarchy %}
{% if cl.date_hierarchy %}{% date_hierarchy cl %}{% endif %}
{% endblock %}
{% endif %}
{% endblock %}