123456789101112131415161718192021 |
- {% set form_id = form_id ? form_id : 'blueprints' %}
- {% set scope = scope ?: 'data.' %}
- <form id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}" data-grav-keepalive="true">
- {% for field in blueprints.fields %}
- {% if field.type %}
- {% set 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 %}
- <input type="hidden" name="task" value="continue" />
- <div class="button-bar">
- <button class="button primary">{{ "PLUGIN_ADMIN.CONTINUE"|tu }}</button>
- </div>
- {{ nonce_field('admin-form', 'admin-nonce')|raw }}
- </form>
|