{% extends "layouts/base.html" %} {% load i18n l10n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {#{% block bodyclass %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation#} {# delete-selected-confirmation{% endblock %}#} {% if not is_popup %} {% block breadcrumbs %}
{% 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 %}
{% for obj in perms_lacking %}
- {{ obj }}
{% endfor %}
{% blocktrans %} Deleting the selected {{ objects_name }} would require deleting the following protected related objects: {% endblocktrans %}
{% for obj in protected %}
- {{ obj }}
{% endfor %}
{% 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 %}
{% endif %}{% trans "Objects" %}
{% for deletable_object in deletable_objects %} {{ deletable_object|unordered_list }} {% endfor %}