{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block page_heading %} {% trans 'Delete confirmation' %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% trans 'Delete confirmation' %}

{% if perms_lacking %}

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

    {% for obj in perms_lacking %}
  • {{ obj }}
  • {% endfor %}
{% elif protected %}

{% trans "Deleting the selected %(objects_name)s would require deleting the following protected related objects:" %}

    {% for obj in protected %}
  • {{ obj }}
  • {% endfor %}
{% else %}
{% blocktrans with object=object %}Are you sure you want to delete the {{ object }} "{{ escaped_object }}"?{% endblocktrans %}

{% trans "All of the following related items will be deleted:" %}

{% if deleted_objects %}
{% trans 'Related objects that will be deleted:' %}
    {% for deletable_object in deleted_objects %}
  • {{ deletable_object|unordered_list }}
  • {% endfor %}
{% endif %}
{% csrf_token %}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %}
{% trans 'Cancel' %}
{% endif %}
{% endblock %}