{% extends "admin/base_site.html" %} {% load i18n admin_urls static admin_list unfold_list %} {% block extrastyle %} {{ block.super }} {% if cl.formset %} {% endif %} {{ media.css }} {% if not actions_on_top and not actions_on_bottom %} {% endif %} {% endblock %} {% block extrahead %} {{ block.super }} {{ media.js }} {% endblock %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock %} {% if not is_popup %} {% block breadcrumbs %}
{% endblock %} {% endif %} {% block coltype %}{% endblock %} {% block nav-global-side %} {% block object-tools %} {% endblock %} {% endblock %} {% block content %}
{% if cl.formset and cl.formset.errors %} {% include "unfold/helpers/messages/errornote.html" with errors=cl.formset.errors %} {{ cl.formset.non_form_errors }} {% endif %}
{% block date_hierarchy %} {% if cl.date_hierarchy %} {% date_hierarchy cl %} {% endif %} {% endblock %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% block result_list %} {% if actions_on_top %} {% if cl.search_fields or action_form or cl.has_filters %}
{% block search %} {% search_form cl %} {% endblock %} {% if action_form %} {% admin_actions %} {% endif %} {% block filters %} {% if cl.has_filters %} {% trans "Filters" %} filter_list {% endif %} {% endblock %}
{% endif %} {% endif %} {% unfold_result_list cl %} {% block pagination %} {% pagination cl %} {% endblock %} {% endblock %}
{% if cl.has_filters %} {% include "unfold/change_list_filter.html" %} {% endif %}
{% endblock %}