{% extends "admin/base_site_nav.html" %} {% load i18n %} {% block extrastyle %} {{block.super}}{% endblock %} {% comment %}Translators: Translation included with Django {% endcomment %} {% block content_title %}

{{title|escape}}: {% trans "Delete"|capfirst|force_escape %}

{% block tools %}{% endblock %}
{% endblock %} {% block content %} {% if perms_lacking %} {% comment %}Translators: Translation included with Django {% endcomment %}

{% blocktrans 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:{% endblocktrans %}

{% elif protected %} {% comment %}Translators: Translation included with Django {% endcomment %}

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

{% else %} {% comment %}Translators: Translation included with Django {% endcomment %}

{% blocktrans 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:{% endblocktrans %}

{% include "admin/includes/object_delete_summary.html" %} {% comment %}Translators: Translation included with Django {% endcomment %}

{% trans "Objects"|capfirst %}

{% csrf_token %}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %} {% comment %}Translators: Translation included with Django {% endcomment %} {% comment %}Translators: Translation included with Django {% endcomment %} {% trans "No, take me back" %}
{% endif %} {% endblock %}