{% extends "admin/base_site.html" %} {% load i18n static admin_urls admin_list %} {% block extrastyle %}{{ block.super }} {{ media.css }}{% endblock extrastyle %} {% block extrahead %}{{ block.super }} {{ media.js }}{% endblock extrahead %} {% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} change-list{% endblock bodyclass %} {% block content %}
{% if cl.formset and cl.formset.errors %}

{% if cl.formset.total_error_count == 1 %}{% translate "Please correct the error below." %}{% else %}{% translate "Please correct the errors below." %}{% endif %}

{{ cl.formset.non_form_errors }} {% endif %}
{% block date_hierarchy %}{% if cl.date_hierarchy %}{% date_hierarchy cl %}{% endif %}{% endblock date_hierarchy %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %}
{% comment %}

{{ cl.opts.verbose_name_plural|capfirst }}

{% endcomment %}

{{ cl.opts.verbose_name_plural|capfirst }}

{% block search %}{% search_form cl %}{% endblock search %}
{% csrf_token %}
{% pagination cl %} {% block result_list %}{% result_list cl %}{% endblock result_list %}
{% block actions %} {% admin_actions %} {% endblock actions %} {% if cl.has_filters %} {% block filters %} {% include 'admin/filters.html' %} {% endblock filters %} {% endif %}
{% endblock %}