{% extends 'base/base.html' %} {% load i18n l10n admin_urls static %} {% load app_extras static %} {% block extra-css %} {% endblock extra-css %} {% block title %}详情 {{meta.title}}{% endblock %} {% block content-header %}

{{meta.verbose_name}} {{object}}

{% endblock %} {% block main-content %}

您确定要 {{action_name}} 选中的所有 {{meta.verbose_name}} ?

{% if perms_lacking %}

{% blocktrans %}Deleting the selected {{ objects_name }} would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}

{% elif protected %}

{% blocktrans %}Deleting the selected {{ objects_name }} would require deleting the following protected related objects:{% endblocktrans %}

{% else %}

{% blocktrans %}Are you sure you want to delete the selected {{ objects_name }}? All of the following objects and their related items will be deleted:{% endblocktrans %}

{% load i18n %}

{% trans "Summary" %}

{% trans "Objects" %}

{% for obj in queryset %} {% endfor %}
{% csrf_token %} {% for obj in queryset %} {% endfor %} 返回列表
{% endif %}
{% endblock main-content %}