{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}
Delete {{ object }}?
{% if reasons %}

You cannot delete this object, as other objects in the database depend on it!

    {% for reason in reasons %}
  • {{ reason }}
  • {% endfor %}
{% else %}

Are you sure you want to delete {{ object }}?

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