{% extends "admin.html" %} {% load i18n %} {% block content %}

{{ title }}

{% if form.related_objects %} {% trans "Deleting this record will cause the exclusion of the following related items:" %}
    {% for related_object in form.related_objects %}
  • {{ related_object.verbose_name }}: {{ related_object.count }}
  • {% endfor %}
{% else %} {% trans "Deleting this record will" %} {% trans "NOT" %} {% trans "result in the exclusion of any other information in the system." %}. {% endif %} {{ form|safe }}
{% endblock %}