{% 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 {
'item_lien': {
0: {
'label': 'Liste des Hôtels',
'path': path('app_hotel_index')
}
}
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': hotel,
'columns': ['Nom', 'Statut', 'Publié', 'Adresse'],
'entity_name': 'Hotel',
'item_select2': [
{
'path': 'app_hotel_contract_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Contracts:'
},
{
'path': 'app_hotel_pension_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Pensions :'
},
{
'path': 'app_hotel_room_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Chambres:'
},
{
'path': 'app_hotel_equipment_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Équipements:'
},
{
'path': 'app_hotel_service_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Services:'
},
{
'path': 'app_hotel_photo_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Images:'
},
{
'path': 'app_hotel_contact_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Contacts:'
},
{
'path': 'app_hotel_reviews_index',
'param_1': 'hotelId',
'attribute_1': 'id',
'label': 'Avis:'
}
]
} %}
{% endblock %}