Back to Wagtail

Delete Not Empty

wagtail/admin/templates/wagtailadmin/collections/delete_not_empty.html

7.4.2399 B
Original Source

{% extends "wagtailadmin/generic/confirm_delete.html" %} {% load i18n %} {% block main_content %}

{% trans 'This collection cannot be deleted, because it is not empty. It contains:' %}

{% for item_type in collection_contents %} - {% if item_type.url %} {{ item_type.count_text }} {% else %} {{ item_type.count_text }} {% endif %} {% endfor %} {% endblock %}