25 lines
1.1 KiB
Twig
25 lines
1.1 KiB
Twig
{% set form_id = form_id ? form_id : 'page-move' %}
|
|
{% set scope = scope ?: 'data.' %}
|
|
|
|
<form id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}" data-page-move>
|
|
<h1>Move</h1>
|
|
<div class="grav-loading"><div class="grav-loader">Loading...</div></div>
|
|
<div class="parents-content"></div>
|
|
|
|
{% for field in blueprints.fields %}
|
|
{% if field.type %}
|
|
{% set value = field.name ? (form.value(field.name) ?? data.value(field.name)) : data.toArray %}
|
|
<div class="block block-{{field.type}}">
|
|
{% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
{{ nonce_field('admin-form', 'admin-nonce')|raw }}
|
|
|
|
<div class="button-bar">
|
|
<button data-remodal-action="cancel" class="button secondary remodal-cancel"><i class="fa fa-fw fa-close"></i> {{ "PLUGIN_ADMIN.CANCEL"|tu }}</button>
|
|
<button class="button primary" name="task" value="save" form="blueprints">{{ "PLUGIN_ADMIN.CONTINUE"|tu }}</button>
|
|
</div>
|
|
</form>
|