{# Boîte d'ajout réutilisable dans l'admin. Usage type : {% embed '@Kernel/partials/_admin_create_box.twig' with { title: 'Ajouter un élément', hint: 'Le contenu de la boîte est piloté par le module consommateur.', form: { action: '/admin/items/create' } } %} {% block fields %}...{% endblock %} {% block actions %}...{% endblock %} {% endembed %} #} {% set form = form|default({}) %} {% set extra = form.extra|default({}) %}

{{ title }}

{% include '@Kernel/partials/_csrf_fields.twig' %} {% block fields %}{% endblock %}
{% block actions %}{% endblock %}
{% if hint is defined and hint %}

{{ hint }}

{% endif %}