{# vim: set ts=2 et sts=2 sw=2: #} {% extends "wiki/base.html" %} {% set title = _('Move "{t}"')|f(t=document.title) %} {% block title %}{{ page_title(title) }}{% endblock %} {% set meta = [('robots', 'noindex, nofollow')] %} {% set crumbs = [(url('wiki.category', document.category), document.get_category_display()), (document.get_absolute_url(), document.title)] %} {% block bodyclass %}move-page{% 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:') }}

    {% for doc in descendants %}
  • {{ doc }}
  • {% endfor %}

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

{% endif %}
{{ csrf() }} {% if descendants_count: %}

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

    {% for doc in descendants %}
  • {{ doc }}
  • {% endfor %}
{% else %}

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

{% endif %}
  • Cancel
{% endblock %} {% block js %} {% endblock %}