{% extends "wagtailadmin/base.html" %} {% load i18n modeladmin_tags wagtailadmin_tags %} {% block titletag %}{{ view.get_meta_title }}{% endblock %} {% block extra_css %} {% include "wagtailadmin/pages/_editor_css.html" %} {{ form.media.css }} {% endblock %} {% block extra_js %} {% include "wagtailadmin/pages/_editor_js.html" %} {{ form.media.js }} {% endblock %} {% block content %} {% block header %} {% include "modeladmin/includes/header_with_breadcrumb.html" with title=view.get_page_title subtitle=view.get_page_subtitle icon=view.header_icon tabbed=True %} {% endblock %}

{% blocktrans %}Choose a parent page{% endblocktrans %}

{% blocktrans with view.verbose_name_plural|capfirst as plural %}{{ plural }} can be added to more than one place within your site. Which of the following would you like to be the parent of your new page?{% endblocktrans %}

{% csrf_token %}
    {% include "wagtailadmin/shared/field_as_li.html" with field=form.parent_page %}
{% endblock %}