blueprints-new-folder.html.twig 800 B

123456789101112131415161718
  1. {% set form_id = form_id ? form_id : 'blueprints' %}
  2. {% set scope = scope ?: 'data.' %}
  3. {% set field_layout = 'admin' %}
  4. <form {% if form_action %}action="{{ form_action }}"{% endif %} id="{{ form_id }}" method="post" data-grav-form="{{ form_id }}" data-grav-keepalive="true">
  5. {% embed 'forms/default/fields.html.twig' with {name: null, fields: blueprints.fields} %}
  6. {% block inner_markup_field_open %}<div class="block block-{{ field.type }}">{% endblock %}
  7. {% block inner_markup_field_close %}</div>{% endblock %}
  8. {% endembed %}
  9. <input type="hidden" name="task" value="saveNewFolder" />
  10. <div class="button-bar">
  11. <button class="button primary">{{ "PLUGIN_ADMIN.SAVE"|t }}</button>
  12. </div>
  13. {{ nonce_field('admin-form', 'admin-nonce')|raw }}
  14. </form>