{% extends "djadmin2theme_default/base.html" %} {% load admin2_tags i18n %} {% block title %}{% blocktrans with model_name=model_name %}Select {{ model_name }} to change{% endblocktrans %}{% endblock title %} {% block page_title %}{% blocktrans with model_name=model_name %}Select {{ model_name }} to change{% endblocktrans %}{% endblock page_title %} {% block javascript %}{{ block.super }} {% endblock javascript %} {% block breadcrumbs %}
  • {% trans "Home" %} /
  • {% firstof app_verbose_name app_label|title %} /
  • {{ model_name_pluralized|title }}
  • {% endblock breadcrumbs %} {% block content %} {% if search_fields %}
    {% endif %}
    {% csrf_token %}
    {% if dates %} {% endif %} {% if view.model_admin.actions_on_top %} {% include 'djadmin2theme_default/includes/list_actions.html' with position='top' %} {% endif %} {% for attr in view.model_admin.list_display %} {% endfor %} {% for obj in object_list %} {% for attr in view.model_admin.list_display %} {% endfor %} {% endfor %}
    {# comment if we sorted on this field last time invert the sort #} {% if sort_term == attr %} {% else %} {% endif %} {% if forloop.first and attr == "__str__" %} {{ model_name|capfirst }} {% else %} {{ model|model_attr_verbose_name:attr|capfirst }} {% endif %}
    {% if permissions.has_change_permission %} {% render obj attr %} {% else %} {% if permissions.has_view_permission %} {% render obj attr %} {% else %} {% render obj attr %} {% endif %} {% endif %}
    {% if view.model_admin.actions_on_bottom %} {% include 'djadmin2theme_default/includes/list_actions.html' with position='bottom' %} {% endif %} {% if is_paginated %} {% include 'djadmin2theme_default/includes/pagination.html' with position='centered' %} {% endif %}
    {{ object_list|length }} {{ model_name_pluralized }}
    {% block filters %}
    {% if list_filter %}

    {# Translators : action verb #}{% trans "Filter" %}

    {% else %} Reset Filter {% endif %}
    {% endblock filters %}
    {% endblock content %}