{% extends template %} {% load i18n %} {% load finchtags %} {% block content %}

{% trans 'Move page' %}

{% if page.is_root %}

{% trans "You can't move a root page."%} {% trans "Back" %}

{% else %} {% if errormessage %}

{{ errormessage }}

{% endif %}
{% csrf_token %}

{% blocktrans with page.title as pagetitle and page.get_absolute_url as pageurl and target.title as targettitle and target.get_absolute_url as targeturl %} Are your sure you want to move the page: `{{ pagetitle }}` ({{ pageurl }}) and all underlying pages to `{{ targettitle }}` ({{targeturl }})?{% endblocktrans %}

{% blocktrans with page.title as pagetitle and target.title as targettitle %} Please note that `{{ pagetitle }}` and all its underlying pages will inherit the access permissions from `{{ targettitle }}`.{% endblocktrans %}

{% spaceless %}{% for p, structure in tree|tree_info %} {% if structure.new_level %}{% endfor %} {% endfor %}{% endspaceless %}
{% trans 'Cancel' %}
{% endif %} {% endblock %}