{% extends 'admin/base_site.html' %} {% load i18n admin_urls static %} {% block stylesheets %} {{ media.css }} {{ block.super }} {% endblock stylesheets %} {% block javascripts %} {{ media.js }} {{ block.super }} {% endblock javascripts %} {% block body_class %}{{ block.super }} app-{{ opts.app_label }} model-{{ opts.model_name }} delete-confirmation{% endblock body_class %} {% block breadcrumbs %}
{% 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 %}
{% blocktrans with escaped_object=object %}Deleting the {{ object_name }} '{{ escaped_object }}' would require deleting the following protected related objects:{% endblocktrans %}
{% 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" %}