{% extends 'base.html.twig' %} {% block title %}Liste thémes{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %} {% include 'shared/layout/_content-header.html.twig' with { 'text_btn': 'Ajouter nouveau', 'class': 'primary', 'path': path('app_theme_new'), 'item_lien': [ { 'label': 'Liste des thématiques', 'path': "#" } ] } %} {% include 'shared/componnents/_tables/_index.html.twig' with { 'datas': themes, 'columns': ['Nom', 'Statut', 'Slug', 'Hôtels', 'Image', 'Accroche Promotionnelle', 'Texte du bouton', 'Description'], 'entity_name': 'Theme', 'item_remove': true, 'item_edit': { 'action': true, 'path': 'app_theme_edit', 'param_1': 'id', 'attribute_1': 'id' } } %} {% endblock %}