{% load i18n %} {% load static %} {% load common_tags %} {% load navigation_tags %}

{% 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 %} {% for column in object|get_source_columns %}
{% source_column_resolve column=column %}{{ column_result }}
{% endfor %} {% endif %} {% for column in extra_columns %}
{{ column.name }}: {{ object|object_property:column.attribute }}
{% endfor %} {% if not hide_links %}

{% get_menu_links 'object menu' source=object as resolved_links %} {% for object_navigation_links in resolved_links %} {% with 'true' as as_dropdown %} {% include 'navigation/generic_navigation.html' %} {% endwith %} {% endfor %}

{% endif %}
{% empty %}

{% trans 'No results' %}

{% endfor %}
{% include 'pagination/pagination.html' %}