{% extends "admin/delete_confirmation.html" %} {% load i18n %} {% load admin_urls %} {% block content %} {% if perms_lacking or protected %} {% if perms_lacking %}

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

{% endif %} {% if protected %}

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

{% endif %} {% else %}

{% blocktrans with escaped_object=object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"?{% endblocktrans %}

At least 2 {{ deleted_objects|length }} additional objects (e.g. user replies and answers, records of observations made) and possibly many more, will be deleted from the database

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