mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 16:24:24 +00:00
9 lines
395 B
Twig
9 lines
395 B
Twig
{% block stored_object_widget %}
|
|
<div data-stored-object="data-stored-object">
|
|
{{ form_widget(form.filename) }}
|
|
{{ form_widget(form.keyInfos, { 'attr': { 'data-stored-object-key': 1 } }) }}
|
|
{{ form_widget(form.iv, { 'attr': { 'data-stored-object-iv': 1 } }) }}
|
|
{{ form_widget(form.type, { 'attr': { 'data-async-file-type': 1 } }) }}
|
|
</div>
|
|
{% endblock %}
|