New folder modal twig

This commit is contained in:
Flavio Copes
2016-01-15 12:56:44 +01:00
parent 3c9110b4fc
commit 2d0d9c2d9a

View File

@@ -0,0 +1,20 @@
{% set form_id = form_id ? form_id : 'blueprints' %}
<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 = 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 %}
<input type="hidden" name="task" value="saveNewFolder" />
<div class="button-bar">
<button class="button primary">{{ "PLUGIN_ADMIN.SAVE"|tu }}</button>
</div>
{{ nonce_field('admin-form', 'admin-nonce') }}
</form>