{% load i18n %}
{% if filter %}
{% comment %}
The applied-filter badge is a daisyUI indicator-item (#287): positioned
outside the button's own box, half above its top edge. Under the app
header — sticky, z-index: 10, with a backdrop filter — the badge's own
z-index: 1 loses that comparison and the top half is drawn behind it.
mvp/tailwind/base.css raises the badge's z-index, scoped to
`.mvp-page-fill`: the one layout where nothing ever scrolls the badge
toward the header, so the fix cannot reintroduce the problem it was
scoped to avoid — a badge riding above the header as an ordinary,
scrolling page passes underneath it.
{% endcomment %}
{% if applied_filters %}
{{ applied_filter_count }}
{% endif %}
{% if clear_filters_url %}
{% endif %}
{% endif %}