{% comment %} This template renders the part with the active filters in place. For each active filter, it renders a button showing the respective filter and allowing to remove it. Required attributes: - active_filters: A list of active filters. {% endcomment %} {% load i18n %}
    {% for active_filter in active_filters %}
  • {% if active_filter.key_label %}{{ active_filter.key_label }}: {% endif %}{{ active_filter.value_label }} {% if not advanced_filter_select or active_filter.key != 'type' %} {% endif %}
  • {% endfor %}