-
{% for error in form.non_field_errors %}
- {{ error}} {% endfor %} {% for field in form %} {% if field.errors %} {% for error in field.errors %}
- {{ field.label_tag }} - {{ error }} {% endfor %} {% endif %} {% endfor %}
{% block search %}{% endblock search %}
{% if applied_facets %}
{% endif %}
{% block filters %}
{% endblock filters %}
{% block result_list %}
{% if results %}
{% endif %}
{% endblock result_list %}
{% block pagination %}{% pagination cl %}{% endblock %}
- {% trans "Applied facets" %}: {% for choice in applied_facets %}
- {% if choice.link %}{% endif %}{{ choice.title }}{% if choice.link %}{% endif %} {% endfor %}
{% trans "Filter" %}
{% if search_model_count != form.models.field.choices|length or request.GET.q or search_facet_count > 0 %} {% 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 %}