{% 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 %}Move 1 page{% plural %}Move {{ counter }} pages{% endblocktrans %} {% endwith %} {% endblock %} {% block header %} {% include "wagtailadmin/shared/header.html" with title=_("Move") icon="doc-empty-inverse" %} {% endblock header %} {% block items_with_access %} {% if items %}
{% trans "Are you sure you want to move these pages?" %}
{% with counter_val=page.child_pages %} {% blocktrans trimmed with counter=counter_val|intcomma count counter_val=counter_val %} This page has one child page {% plural %} This page has {{ counter }} child pages {% endblocktrans %} {% endwith %}
{% endif %}