{% extends 'base.html.twig' %} {% block title %}Liste disponibilités{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %} {% include 'shared/layout/_content-header.html.twig' with { 'item_lien': { 0 : { 'label': hotel.name, 'path': path('app_hotel_detail', {'hotelId': hotel.id}) }, 1 : { 'label': hotel_contract.name, 'path': path('app_hotel_contract_detail', {'hotelId': hotel.id, 'hotelContractId': hotel_contract.id}) }, 2 : { 'label': 'Liste' } } } %} {% include 'hotel_contract_disponibility/new.html.twig' with { 'form': form, 'hotel_contract': hotel_contract, 'hotel': hotel } %} {% include 'shared/componnents/_tables/_index.html.twig' with { 'datas': hotel_contract_disponibilities, 'columns': ['Date', 'Nom chambre', 'Nombre de chambre', 'Jour(s) de semaine'], 'entity_name': 'HotelContractDisponibility', 'item_remove': true } %} {% endblock %}