{% extends 'admin/change_list.html' %} {% load i18n admin_urls static admin_list %} {% block coltype %}colM{% endblock %} {% block content %}
{% block object-tools %} {{ block.super }} {% endblock %}
{% if cl.formset.errors %}

{% if cl.formset.total_error_count == 1 %}{% trans "Please correct the error below." %}{% else %}{% trans "Please correct the errors below." %}{% endif %}

{{ cl.formset.non_form_errors }} {% endif %}
{% csrf_token %} {% if action_form and cl.show_admin_actions %}
{% admin_actions %}
{% endif %} {% block date_hierarchy %}{{ block.super }}{% endblock %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% block result_list %}
{% result_list cl %}
{% endblock %} {% block pagination %}{% pagination cl %}{% endblock %}
{% if cl.search_fields or cl.has_filters %}
{% block search %}{{ block.super }}{% endblock %} {% block filters %} {% if cl.has_filters %}
{% trans 'Filters' %} {% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
{% endif %} {% endblock %}
{% endif %}
{% endblock %}