{% extends 'wagtailadmin/bulk_actions/confirmation/base.html' %} {% load i18n wagtailadmin_tags %} {% block titletag %} {% with counter_val=items|length %} {% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %}Delete 1 page {% plural %}Delete {{ counter }} pages{% endblocktrans %} {% endwith %} {% endblock %} {% block header %} {% include "wagtailadmin/shared/header.html" with title=_("Delete") icon="doc-empty-inverse" %} {% endblock header %} {% block items_with_access %} {% if items %}
{% trans "Are you sure you want to delete these pages?" %}
{% with counter_val=page.descendant_count %} {% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %} This will also delete one more subpage. {% plural %} This will also delete {{ counter }} more subpages. {% endblocktrans %} {% endwith %}
{% endif %}