{% extends "admin/change_list.html" %} {% load i18n admin_list %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block content %}
{% if form.errors %} {% endif %}
{% block search %}{% endblock search %} {% if applied_facets %}

{% endif %} {% block filters %}

{% trans "Filter" %}

{% if search_model_count != form.models.field.choices|length or request.GET.q or search_facet_count > 0 %}
{% trans "clear all filters" %}

{% endif %} {% if facets and form.possible_facets.field.choices|length > 0 %}

{% trans "Facets & counts" %}

{% for facet_type in facets.get_field_facets %}

{{ facet_type.grouper.get_display }}

    {% for item in facet_type.list %}
  • {{ item.value }} ({{ item.count }})
  • {% endfor %}
{% endfor %} {% endif %}
{% endblock filters %} {% block result_list %} {% if results %}
{% include "admin/haystackbrowser/result_list_headers.html" with filtered=filtered only %} {% for result in results %} {% include "admin/haystackbrowser/result.html" with result=result request=request filtered=filtered search_form=form only %} {% endfor %}
{% endif %} {% endblock result_list %} {% block pagination %}{% pagination cl %}{% endblock %}
{% endblock content %}