{% extends "brillixy/base.html" %} {% load brillixytags admin_urls admin_list i18n %} {% load url from future %} {% block extrastyle %} {% endblock %} {% block extrahead %} {% endblock %} {% block content_title %}{% endblock %} {% block content %} {% if cl.formset.errors %}
{% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} {{ cl.formset.non_form_errors }}
{% endif %}
{% block filters %} {% if cl.has_filters or cl.search_fields %}
{% if cl.search_fields %} {% endif %} {% if cl.has_filters %}

{% trans 'Filter' %} {% if cl.params %}{% trans 'reset' %}{% endif %}

{% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
{% endif %}
{% endif %} {% endblock %} {% block result_list %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %}
{% block object-tools %} {% if has_add_permission %} {% blocktrans with cl.opts.verbose_name as name %}Add {{ name }}{% endblocktrans %} {% endif %} {% if action_form and actions_on_top and cl.full_result_count %}{% admin_actions %}{% endif %} {% endblock %}
{% if cl.date_hierarchy %} {% block date_hierarchy %}{% date_hierarchy cl %}{% endblock %} {% endif %} {% result_list cl %} {% block pagination %}{% pagination cl %}{% endblock %}
{% endblock %}
{% endblock %}