{% extends "admin/base.html" %} {% load i18n admin_urls static admin_list %} {% block extrastyle %} {% if cl.formset or action_form %} {% endif %} {{ media.css }} {% endblock %} {% block extrahead %} {{ block.super }} {{ media.js }} {% endblock %} {# 导航 #} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block header_right %} {# 操作按钮 #} {% block object-tools %}
{% block object-tools-items %} {% change_list_object_tools %} {% endblock %}
{% endblock %} {% endblock %} {% block content %}
{% block search %}{% search_form cl %}{% endblock %} {% block date_hierarchy %}{% if cl.date_hierarchy %}{% date_hierarchy cl %}{% endif %}{% endblock %} {# select 筛选 #} {% block filters %} {% if cl.has_filters %}
{% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %}
{% endif %} {% endblock %}
{% csrf_token %} {% if cl.formset %}
{{ cl.formset.management_form }}
{% endif %} {% block result_list %} {% if action_form and cl.show_admin_actions %}{% admin_actions %}{% endif %} {% result_list cl %} {% endblock %} {% block pagination %}{% pagination cl %}{% endblock %}
{% endblock %}