{% extends "wagtailadmin/base.html" %} {% load i18n wagtailadmin_tags %} {% block titletag %}{{ title }}{% endblock %} {% block content %} {% trans "Move category" as move_label %} {% include "wagtailadmin/shared/header.html" with title=title icon="arrow-path" %}
{% csrf_token %}
Moving category: {{ category.name }}

Select a new parent category or leave empty to move to root level. The category and all its children will be moved together.

{% for field in form %}

{% if field.errors %} {% for error in field.errors %}
{{ error }}
{% endfor %} {% endif %}
{% if field.help_text %}
{{ field.help_text }}
{% endif %}
{{ field }}
{% endfor %}
{% endblock %}