{% load i18n %} {% load static %} {% load common_tags %} {% load navigation_tags %}
{% if not object_list %}
{% include 'appearance/no_results.html' %}
{% else %}

{% if page_obj %} {% if page_obj.paginator.num_pages != 1 %} {% blocktrans with page_obj.start_index as start and page_obj.end_index as end and page_obj.paginator.object_list|length as total and page_obj.number as page_number and page_obj.paginator.num_pages as total_pages %}Total ({{ start }} - {{ end }} out of {{ total }}) (Page {{ page_number }} of {{ total_pages }}){% endblocktrans %} {% else %} {% blocktrans with page_obj.paginator.object_list|length as total %}Total: {{ total }}{% endblocktrans %} {% endif %} {% else %} {% blocktrans with object_list|length as total %}Total: {{ total }}{% endblocktrans %} {% endif %}


{% if object_list %} {% if not hide_multi_item_actions %} {% get_multi_item_links_form object_list %} {% endif %} {% if multi_item_actions %}
  {{ multi_item_form }}
{% endif %} {% endif %}
{% if object_list %}
{% endif %}
{% for object in object_list %}
{% if not hide_columns %} {% navigation_get_source_columns source=object exclude_identifier=True as source_columns %} {% for column in source_columns %}
{% navigation_source_column_resolve column=column as column_value %}{% if column_value != '' %}{% if column.include_label %}{{ column.label }}: {% endif %}{{ column_value }}{% endif %}
{% endfor %} {% endif %} {% for column in extra_columns %}
{{ column.name }}: {{ object|object_property:column.attribute }}
{% endfor %} {% if not hide_links %}
{% navigation_resolve_menus names='list facet,object' source=object as facet_menus_link_results %} {% if facet_menus_link_results %} {% endif %} {% endif %}
{% endfor %}
{% include 'pagination/pagination.html' %}
{% endif %}