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

{{ title }}

{% if form.related_objects %} {{ _("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 %} {{ _("Deleting this record will") }} {{ _("NOT") }} {{ _("result in the exclusion of any other information in the system.") }}. {% endif %} {{ form|safe }}
{% endblock %}