{% load generic_template_filters i18n %}
{% trans "Delete Confirmation" %}
{% trans "Deleting the record" %} '{{delete_object}}' {% trans "would require managing the following related objects:" %}
{% trans "Protected Records" %} ({{protected|length}})
    {% for summary in protected_objects_count.items %}
  • {{summary.0|capfirst}} : {{summary.1|capfirst}}
  • {% endfor %}
{% trans "Other Related Records" %} ({{model_count_sum}})
    {% for summary in related_objects_count.items %}
  • {{summary.0|capfirst}} : {{summary.1|capfirst}}
  • {% endfor %}
{% for key in model_map.keys %}
    {% with models_dict=model_map|get_item:key %} {% for item in models_dict.items %}
  • {{item.0.verbose_name}}
  • {% endfor %} {% endwith %}

{% trans "Action Required" %}⚠️

{% endfor %}