{% extends "admin/base2.html" %} {% load i18n adminmedia admin_modify admin_list %} {% block extrahead %}{{ block.super }} {{ media }} {% endblock %} {% block extrastyle %} {{ block.super }} {% if not actions_on_top and not actions_on_bottom %} {% endif %} {% endblock %} {% block bodyclass %}change-list{% endblock %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block coltype %}flex{% endblock %} {% block left_content %} {% if lc.cl.formset.errors %}

{% blocktrans count lc.cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}
{% block search %}{% search_form lc.cl %}{% endblock %} {% block date_hierarchy %}{% date_hierarchy lc.cl %}{% endblock %} {% block filters %} {% if lc.cl.has_filters %}

{% trans 'Filter' %}

{% for spec in lc.cl.filter_specs %}{% admin_list_filter lc.cl spec %}{% endfor %}
{% endif %} {% endblock %}
{% csrf_token %} {% if lc.cl.formset %} {{ lc.cl.formset.management_form }} {% endif %} {% block result_list %} {% if action_form and actions_on_top and lc.cl.full_result_count %}{% admin_actions %}{% endif %} {% result_list lc.cl %} {% if action_form and actions_on_bottom and lc.cl.full_result_count %}{% admin_actions %}{% endif %} {% endblock %} {% block pagination %}{% pagination lc.cl %}{% endblock %}
{% endblock %} {% block right_content %}
{% csrf_token %} {% block form_top %}{% endblock %}
{% if is_popup %}{% endif %} {% if save_on_top %}{% submit_row %}{% endif %} {% if errors %}

{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

    {% for error in adminform.form.non_field_errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% for fieldset in adminform %} {% include "admin/includes/fieldset.html" %} {% endfor %} {% block after_field_sets %}{% endblock %} {% for inline_admin_formset in inline_admin_formsets %} {% include inline_admin_formset.opts.template %} {% endfor %} {% block after_related_objects %}{% endblock %} {% submit_row %} {% if adminform and add %} {% endif %} {# JavaScript for prepopulated fields #} {% prepopulated_fields_js %}
{% endblock %}