{% extends "admin/delete_confirmation.html" %} {% load i18n static %} {% block extrastyle %} {{ block.super }} {% endblock extrastyle %} {% block content %} {% if perms_lacking %}

{% blocktranslate with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktranslate %}

{% elif protected %}

{% blocktranslate with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would require deleting the following protected related objects:{% endblocktranslate %}

{% else %} {% if deactivating_warning %}
{% endif %}

{% 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" %}

{% csrf_token %}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %} {% if deactivating_warning %}{% endif %} {% translate "No, take me back" %}
{% endif %} {% endblock %} {% block footer %} {{ block.super }} {% endblock %}