{% load i18n %} {% load attribute_tags %} {% load pagination_tags %} {% load navigation %} {% if side_bar %}

{{ title|capfirst }}

{% else %} {% autopaginate object_list %}

{% ifnotequal 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 %}List of {{ title }} ({{ start }} - {{ end }} out of {{ total }}){% endblocktrans %} {% else %} {% blocktrans with page_obj.paginator.object_list|length as total %}List of {{ title }} ({{ total }}){% endblocktrans %} {% endifnotequal %}

{% endif %}
{% if not hide_header %} {% if not hide_object %} {% endif %} {% for column in object_list.0|get_model_list_columns %} {% endfor %} {% for column in extra_columns %} {% endfor %} {% if not hide_links %} {% endif %} {% endif %} {% for object in object_list %} {% if not hide_object %} {% if main_object %} {% with object|object_property:main_object as object %} {% endwith %} {% else %} {% endif %} {% endif %} {% if not hide_columns %} {% for column in object|get_model_list_columns %} {% endfor %} {% endif %} {% for column in extra_columns %} {% endfor %} {% if not hide_links %} {% endif %} {% empty %} {% endfor %}
{% trans "Identifier" %}{{ column.name|capfirst }}{{ column.name|capfirst }} 
{% if not hide_link %}{{ object }}{% else %}{{ object }}{% endif %}{% if not hide_link %}{{ object }}{% else %}{{ object }}{% endif %}{{ object|object_property:column.attribute|safe }}{{ object|object_property:column.attribute|safe }} {% object_navigation_template %}
{% blocktrans %}There are no {{ title }}{% endblocktrans %}
{% paginate %}