{% extends "admin/change_list.html" %} {% load i18n admin_list admin_interface_tags %} {# copied from django 4.0.7 #} {% block filters %} {% if cl.has_filters %}

{% translate 'Filter' %}

{% if cl.has_active_filters %} {% get_admin_interface_setting "list_filter_removal_links" as list_filter_removal_links %} {% if list_filter_removal_links %} {% for spec in cl.filter_specs %}{% admin_interface_filter_removal_link cl spec %}{% endfor %}

{% translate "Clear all filters" %} ✖

{% else %}

{# Translators: don't translate this, the django catalog already contains it #} ✖ {% translate "Clear all filters" %}

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