Refs #27888 -- Removed redundant {% if %} in admin changelist filters.

This commit is contained in:
Hasan Ramezani 2020-01-24 16:31:40 +01:00 committed by Mariusz Felisiak
parent 551f644b95
commit 5d654e1e71
1 changed files with 3 additions and 5 deletions

View File

@ -60,11 +60,9 @@
{% if cl.has_filters %}
<div id="changelist-filter">
<h2>{% translate 'Filter' %}</h2>
{% if cl.has_filters or cl.search_fields %}
{% if cl.preserved_filters %}<h3 id="changelist-filter-clear">
<a href="?{% if cl.is_popup %}_popup=1{% endif %}">&#10006; {% translate "Clear all filters" %}</a>
</h3>{% endif %}
{% endif %}
{% if cl.preserved_filters %}<h3 id="changelist-filter-clear">
<a href="?{% if cl.is_popup %}_popup=1{% endif %}">&#10006; {% translate "Clear all filters" %}</a>
</h3>{% endif %}
{% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
</div>
{% endif %}