{% extends "admin/base_site.html" %} {% load i18n admin_urls admin_list static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block content %}
{% if has_add_permission %}
{% blocktranslate with name=cl.opts.verbose_name %}添加 {{ name }}{% endblocktranslate %}
{% endif %}
{% if cl.search_fields %}
{% block search %}{% search_form cl %}{% endblock %}
{% if cl.has_filters %} {% endif %}
{% endif %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% if action_form and actions_on_top and cl.show_admin_actions %}
{% admin_actions %}
{% endif %} {% if cl.result_count == 0 %}
{% translate '没有匹配的数据' %}
{% if cl.query %} {% translate '未找到与"' %}{{ cl.query }}{% translate '"匹配的结果,请尝试其他关键字。' %} {% else %} {% translate '暂无数据,点击上方按钮开始添加。' %} {% endif %}
{% else %}
{% block result_list %}{% result_list cl %}{% endblock %}
{% endif %} {% if action_form and actions_on_bottom and cl.show_admin_actions %}
{% admin_actions %}
{% endif %}
{% if cl.result_count > 0 %} {% block pagination %}{% pagination cl %}{% endblock %} {% endif %}
{% if cl.has_filters %}

{% translate '筛选' %}

{% if request.META.QUERY_STRING %} {% translate '清除全部筛选' %} {% endif %} {% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {{ block.super }} {% endblock %}