db54757311
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
23 lines
1003 B
HTML
23 lines
1003 B
HTML
<div class="remodal" data-remodal-id="modal-admin-media-move" data-remodal-options="hashTracking: false">
|
|
<form method="post" onsubmit='return false;'>
|
|
{% for field in fields %}
|
|
{% if field.type %}
|
|
{% set value = data.value(field.name) %}
|
|
<div class="block block-{{field.type}}">
|
|
{% include ["forms/fields/#{field.type}/#{field.type}.html.twig", 'forms/fields/text/text.html.twig'] %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<div class="form-field grid">Select a destination page or enter the destination page route.</div>
|
|
|
|
<div class="button-bar">
|
|
<div class="loading">
|
|
{{ "Moving" }}... <i class="fa fa-spinner fa-spin"></i>
|
|
</div>
|
|
|
|
<button class="button primary" style="visibility: hidden" name="move">{{ "Move" }}</button>
|
|
<button class="button" style="visibility: hidden" name="move_and_go">{{ "Move And Go" }}</button>
|
|
</div>
|
|
</form>
|
|
</div> |