{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "admin/base_site.html" %} {% load i18n %} {% load static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% include "admin/koriander/page/includes/breadcrumbs.html" %} {% endblock %} {% block content %}
{% csrf_token %}

{% if show_confirmation %} {% blocktrans %}This will move the current page from {{ old_address }} to {{ new_address }}{% endblocktrans %} {% else %} {% url "admin:koriander_page_change" page.parent.pk as change_url %} {% blocktrans with address=page.parent.address url=change_url %}Current parent: {{ address }}{% endblocktrans %} {% endif %}

{% if show_confirmation and child_address_changes %}

{% trans "Child pages" %}

{% trans "This action renames the following child pages as well:" %}

{% for old_addr, new_addr in child_address_changes %} {% endfor %}
{% trans "Old address" %} {% trans "New address" %}
{{ old_addr }} {{ new_addr }}
{% endif %} {{ form }}
{% if show_confirmation %} {% trans 'Back' %} {% else %} {% trans 'Cancel' %} {% endif %}
{% endblock %}