{% extends "wagtailadmin/base.html" %} {% load i18n %} {% block titletag %}{% blocktrans trimmed with title=page_to_move.get_admin_display_title %}Move {{ title }}{% endblocktrans %}{% endblock %} {% block content %} {% trans "Move" as move_str %} {% include "wagtailadmin/shared/header.html" with title=move_str subtitle=page_to_move.get_admin_display_title icon="doc-empty-inverse" %}

{% if page_to_move.is_leaf %} {% blocktrans trimmed with title=destination.get_admin_display_title %}Are you sure you want to move this page into '{{ title }}'?{% endblocktrans %} {% else %} {% blocktrans trimmed with title=destination.get_admin_display_title %}Are you sure you want to move this page and all of its children into '{{ title }}'?{% endblocktrans %} {% endif %} {% if translations_to_move_count %} {% blocktrans trimmed count counter=translations_to_move_count %} This will also move one translation of this page and its child pages {% plural %} This will also move {{ translations_to_move_count }} translations of this page and their child pages {% endblocktrans %} {% endif %}

{% csrf_token %}
{% endblock %}