{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {{ media }} {% endblock %} {% block bodyclass %} {{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if perms_lacking %} {% elif protected %} {% else %}
{% translate 'Delete confirmation' %}

{% blocktranslate with escaped_object=object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktranslate %}

{% include "admin/includes/object_delete_summary.html" %}

{% translate "Objects" %}

    {{ deleted_objects|unordered_list }}
{% csrf_token %} {% if is_popup %}{% endif %} {% if to_field %}{% endif %}
{% translate "No, take me back" %}
{% endif %}
{% endblock content %}