{% extends "base.html" %} {% load i18n %} {% block content %} {% if perms_lacking %}

{% trans 'Deleting the ' %}{{ controller.opts.verbose_name }}{% blocktrans with escaped_object=object %}: "{{ 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 %}

{% trans 'Deleting the ' %}{{ controller.opts.verbose_name }}{% blocktrans with escaped_object=object %}: "{{ escaped_object }}" would require deleting the following protected related objects:{% endblocktrans %}

{% else %}

{% trans 'Are you sure you want to delete the ' %}{{ controller.opts.verbose_name }}{% blocktrans with escaped_object=object %}: "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}

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

{% trans "Objects" %}

{% csrf_token %}
{% if is_popup %}{% endif %} {% if to_field %}{% endif %} | {% trans 'Cancel' %}
{% endif %} {% endblock %}