{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_list djadmin %} {% block title %}{% if cl.formset and cl.formset.errors %}{% translate "Error:" %} {% endif %}{{ block.super }}{% endblock %} {% block extrastyle %}{{ block.super }} {{ media.css }} {% dj_url 'jsi18n' as dj_jsi18n %}{% if cl.formset or action_form %}{% endif %} {% endblock %} {% block extrahead %}{{ block.super }} {{ media.js }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock %} {% block breadcrumbs %} {% endblock %} {% block coltype %}{% endblock %} {% block content_subtitle %} {% if djadmin_help_text %}

{{ djadmin_help_text }}

{% endif %} {% endblock %} {% block object-tools %} {% endblock %} {% block content %} {% djadmin_active_filter_count cl as dj_filter_count %}
{% if cl.formset and cl.formset.errors %}
{% blocktranslate count counter=cl.formset.total_error_count %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktranslate %}
{{ cl.formset.non_form_errors }} {% endif %}
{% block search %}{% search_form cl %}{% endblock %}
{% if cl.is_facets_optional %} {% dj_icon "chart" "dj-icon dj-icon--sm" %}{% if cl.add_facets %}{% translate "Hide counts" %}{% else %}{% translate "Show counts" %}{% endif %} {% endif %} {% if cl.has_filters %} {% endif %}
{% block date_hierarchy %}{% if cl.date_hierarchy %}{% date_hierarchy cl %}{% endif %}{% endblock %} {% djadmin_active_filters cl as dj_chips %} {% if dj_chips %}
{% for chip in dj_chips %} {{ chip.title|capfirst }} {{ chip.display }} {% dj_icon "x" "dj-icon dj-icon--xs" %} {% endfor %} {% if cl.has_active_filters %}{% translate 'Clear all' %}{% endif %}
{% 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 %} {% endblock %}
{% block filters %} {% if cl.has_filters %} {% endif %} {% endblock %}
{% endblock %}