{% extends "admin/base_site.html" %} {% load adminmedia admin_list i18n grp_tags %} {% block javascripts %} {{ block.super }} {% if cl.formset %} {% url admin:jsi18n as jsi18nurl %} {% endif %} {{ media }} {% endblock %} {% block content_title %}

{{ cl.opts.verbose_name_plural|capfirst }}

{% endblock %} {% block object-tools %} {% if has_add_permission %} {% endif %} {% endblock %} {% block content %} {% if cl.search_fields or cl.has_filters or cl.date_hierarchy %}
{% pagination cl %} {% if cl.has_filters or cl.search_fields %} {% if cl.has_filters %}
{% trans 'Filter' %}
{% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
{% endif %} {% if cl.search_fields %} {% endif %} {% endif %}
{% if cl.date_hierarchy %} {% date_hierarchy cl %} {% endif %} {% endif %}
{% csrf_token %}
{% if is_popup %}{% endif %} {% if cl.formset.errors %}

{% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{{ cl.formset.non_form_errors }} {% endif %} {% if cl.formset %} {{ cl.formset.management_form }} {% endif %} {% block result_list %} {% result_list cl %} {% endblock %} {% pagination cl %}

{% if action_form and cl.full_result_count and cl.result_count %} {% admin_actions %} {% endif %} {% if cl.formset and cl.full_result_count and cl.result_count %} {% endif %}
{% endblock %}