{% extends "wiki/base.html" %} {% set title = _('Move "{t}"')|f(t=document.title) %} {% block title %}{{ page_title(title) }}{% endblock %} {% set meta = [('robots', 'noindex, nofollow')] %} {% block bodyclass %}move-page{% endblock %} {% block site_css %} {{ super() }} {{ css('wiki-edit') }} {{ css('jquery-ui') }} {% endblock %} {% block content %}

{{ title }}

{{ _('Please provide a new slug for this page using the field below.') }}

{% if conflicts: %}

{{ _('Your requested move cannot be completed due to slug conflicts:') }}

{{ _('Please choose a different slug value.') }}

{% endif %} {% if form.errors %}
{{ form.errors.as_ul() }}
{% endif %}
{{ csrf() }} {% if descendants_count: %}

{{ _('The following {d} subpages will be affected by this move:')|f(d=descendants_count) }}

{% else %}

{{ _('No other documents will be affected by this change.') }}

{% endif %}
{% endblock %} {% block js %} {{ js('jquery-ui') }} {{ js('wiki-move', async=True) }} {% endblock %}