{% extends "admin/change_list.html" %} {% load i18n admin_urls static admin_list %} {% if not is_popup %} {% block breadcrumbs %} {% endblock breadcrumbs %} {% endif %} {% block object-tools %}
{% endblock object-tools %} {% block content %}
{% 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 %}
{% block search %} {% search_form cl %} {% endblock search %} {% block date_hierarchy %} {% date_hierarchy cl %} {% endblock date_hierarchy %}
{% 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 result_list %} {% block pagination %} {% pagination cl %} {% endblock pagination %}
{% block filters %} {% if cl.has_filters %} {% comment %} L8R: position:absolute (default) causes long filters to be cut off at the bottom. Overriding to initial, with float: right fixes that, but makes the filter list appear below the search bar and date drilldown. {% endcomment %}

{% trans 'Filter' %}

{% for spec in cl.filter_specs %} {% admin_list_filter cl spec %} {% endfor %}
{% endif %} {% endblock filters %}
{% endblock content %}