{% import 'shared/componnents/_macros/_alerts.html.twig' as alerts %} {% extends 'base.html.twig' %} {% block title %}Modifier 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_edit', {'id': theme.id}), 'path_list': path('app_theme_index'), 'label_btn': 'Modifier', 'title': 'Modifier Théme', 'class_alert': 'info', 'theme': theme } %} {% endblock %}