{% extends 'base.html.twig' %} {% block title %}Liste Hôtels{% 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_hotel_new'), 'entity_name': 'Hotel', 'item_lien': [ { 'label': 'Liste des hôtels', 'path': "#" } ] } %} {% include 'shared/componnents/_tables/_index.html.twig' with { 'datas': hotels, 'columns': ['Nom', 'Statut', 'Publié', 'Adresse'], 'entity_name': 'Hotel', 'item_remove': true, 'item_edit': { 'action': true, 'path': 'app_hotel_edit', 'param_1': 'id', 'attribute_1': 'id' }, 'item_forward': { 'action': true, 'path': 'app_hotel_detail', 'param_1': 'hotelId', 'attribute_1': 'id' } } %} {% endblock %}