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

{% blocktrans with view.model_name as model_name %}Where would you like to move this {{ model_name }}?{% endblocktrans %}

{% csrf_token %}
    {% for field in form %} {% include "wagtailadmin/shared/field_as_li.html" %} {% endfor %}
{% endblock %}