{% extends "base.html" %} {% load custom_tags %} {% load custom_tags %} {% load crispy_forms_tags %} {% load i18n %} {% block title %}{% trans 'Delete' %} - {{ title }}{% endblock %} {% block extra_head %} {{ form.media }} {% endblock %} {% block content %}

{% trans 'Delete' %} {{ title }}

{% csrf_token %} {{ form|crispy }} {% if protected_objects %}
{% trans 'Protected' %} The object you are trying to delete is protected by the following references to it.
{% for o in protected_objects %} {% class_name o.model as name %} {{ name }} {% endfor %} {% endif %} {% if cascading_objects %}
{% trans 'Cascade' %} The object you are trying to delete is used by the following objects which will also be deleted.
{% for o in cascading_objects %} {% class_name o.model as name %} {{ name }} {% endfor %} {% endif %} {% if set_null_objects %}
{% trans 'Remove' %} The object you are trying to delete is used by the following objects from which the reference will be removed.
{% for o in set_null_objects %} {% class_name o.model as name %} {{ name }} {% endfor %} {% endif %} {% trans 'Cancel' %}
{% endblock %}