{% 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 not hide_header %} {% if multi_item_actions %} {% endif %} {% if not hide_object %} {% else %} {% navigation_get_source_columns source=object_list only_identifier=True as source_column %} {% if source_column %} {% endif %} {% endif %} {% if not hide_columns %} {% navigation_get_source_columns source=object_list exclude_identifier=True as source_columns %} {% for column in source_columns %} {% endfor %} {% endif %} {% for column in extra_columns %} {% endfor %} {% if not hide_links %} {% endif %} {% endif %} {% for object in object_list %} {% if multi_item_actions %} {% endif %} {% if not hide_object %} {% else %} {% navigation_get_source_columns source=object only_identifier=True as source_column %} {% navigation_source_column_resolve column=source_column as column_value %} {% if column_value %} {% endif %} {% endif %} {% if not hide_columns %} {% navigation_get_source_columns source=object exclude_identifier=True as source_columns %} {% for column in source_columns %} {% endfor %} {% endif %} {% for column in extra_columns %} {% endfor %} {% if not hide_links %} {% endif %} {% endfor %}
{% trans 'Identifier' %} {% if source_column.is_sortable %} {{ source_column.label }} {% if source_column.get_sort_field == sort_field %} {% if icon_sort %}{{ icon_sort.render }}{% endif %} {% endif %} {% else %} {{ source_column.label }} {% endif %} {% if column.is_sortable %} {{ column.label }} {% if column.get_sort_field == sort_field %} {% if icon_sort %}{{ icon_sort.render }}{% endif %} {% endif %} {% else %} {{ column.label }} {% endif %} {{ column.name }} 
{% if not hide_link %}{{ object }}{% else %}{{ object }}{% endif %} {% if source_column.is_attribute_absolute_url or source_column.is_object_absolute_url %} {{ column_value }} {% else %} {{ column_value }} {% endif %}
{% navigation_source_column_resolve column=column as column_value %}{{ column_value }} {# Use explicit 'as column_value ' to force date rendering #}
{{ object|object_property:column.attribute }} {% navigation_resolve_menu name='list facet' sort_results=True source=object as facet_menus_results %} {% for facet_menu_results in facet_menus_results %} {% for link_group in facet_menu_results.link_groups %} {% with link_group.links as object_navigation_links %} {% with 'true' as horizontal %} {% with 'btn btn-default btn-outline btn-xs btn-list' as link_classes %} {% include 'navigation/generic_navigation.html' %} {% endwith %} {% endwith %} {% endwith %} {% endfor %} {% endfor %} {% navigation_resolve_menu name='object' source=object as object_menus_results %} {% for object_menu_results in object_menus_results %} {% for link_group in object_menu_results.link_groups %} {% with link_group.links as object_navigation_links %} {% with 'btn-list' as link_extra_classes %} {% with 'true' as horizontal %} {% include 'navigation/generic_navigation.html' %} {% endwith %} {% endwith %} {% endwith %} {% endfor %} {% endfor %}
{% include 'pagination/pagination.html' %}
{% endif %}