{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_list %} {% block page_heading %} {{ title }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ cl.result_count }} {{ cl.opts.verbose_name_plural|capfirst }}

{% block search %}{% search_form cl %}{% endblock %} {% if has_add_permission %} {% trans 'Add' %} {{ cl.opts.verbose_name }} {% endif %}
{% block date_hierarchy %} {% if cl.date_hierarchy %}
{% date_hierarchy cl %}
{% endif %} {% endblock %} {% block filters %} {% if cl.has_filters %}
{# Show active filters with remove option #} {% if cl.has_active_filters %}
{% trans "Active Filters" %}
{% trans "Clear all" %}
{% for spec in cl.filter_specs %} {% for choice in spec.choices %} {% if choice.selected and choice.query_string != cl.get_query_string %} {{ spec.title }}: {{ choice.display }} {% endif %} {% endfor %} {% endfor %}
{% endif %} {# Filter dropdowns #}
{% trans "Filter by:" %} {% for spec in cl.filter_specs %} {% endfor %}
{% endif %} {% endblock %}
{% if cl.formset and cl.formset.errors %}

{% blocktrans count counter=cl.formset.total_error_count %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{{ cl.formset.non_form_errors }}
{% endif %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% block result_list %}
{% if action_form and actions_on_top and cl.show_admin_actions %} {% admin_actions %} {% endif %} {% result_list cl %} {% if action_form and actions_on_bottom and cl.show_admin_actions %} {% admin_actions %} {% endif %}
{% endblock %} {% block pagination %} {% if cl.result_count %}
{% if cl.result_count == cl.full_result_count %} {{ cl.result_count }} {% if cl.result_count == 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endif %} {% else %} {{ cl.full_result_count }} {% if cl.full_result_count == 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endif %} ({{ cl.result_count }} {% trans 'shown' %}) {% endif %}
{% pagination cl %}
{% endif %} {% endblock %}
{% endblock %} {% block extra_content %}{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %}