{% import 'shared/componnents/_macros/_alerts.html.twig' as alerts %} {% extends 'base.html.twig' %} {% block title %}Ajouter nouveau théme{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %} {% include 'shared/layout/_content-header.html.twig' with { 'item_lien': [ { 'label': 'Liste des thématiques', 'path': path('app_theme_index') } ] } %} {% include 'theme/_form.html.twig' with { 'path': path('app_theme_new'), 'path_list': path('app_theme_index'), 'label_btn': 'Ajouter', 'title': 'Ajouter Théme', 'class_alert': 'success', 'theme': null } %} {% endblock %}