{% extends "nexus/admin/base_site.html" %} {% load i18n %} {% block breadcrumb_bits %}
  • {% trans "Model Admin" %}
  • {{ app_label|capfirst }}
  • {{ opts.verbose_name_plural|capfirst }}
  • {{ object|truncatewords:"18" }}
  • {% trans 'Delete' %}
  • {% endblock %} {% block content %} {% if perms_lacking %}

    {% blocktrans with object as escaped_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 %}

    {% else %}

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

    {% csrf_token %}
    {% endif %} {% endblock %}