mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
8 lines
278 B
Twig
8 lines
278 B
Twig
{% block stored_object_widget %}
|
|
{% if form.title is defined %} {{ form_row(form.title) }} {% endif %}
|
|
<div
|
|
data-stored-object="data-stored-object">
|
|
{{ form_widget(form.stored_object, { 'attr': { 'data-stored-object': 1 } }) }}
|
|
</div>
|
|
{% endblock %}
|