{% extends 'base.html.twig' %}
{% block title %}Liste Avis{% 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_reviews_new', {'hotelId': hotel.id}),
'entity_name': 'Reviews',
'item_lien': [
{
'label': hotel.name,
'path': path('app_hotel_detail', {'hotelId': hotel.id})
},
{
'label': 'Liste des avis',
'path': "#"
}
]
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': hotel_reviews,
'columns': ['Nom complet', 'Titre', 'Message', 'Notes', 'Date de création'],
'entity_name': 'HotelReviews',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_hotel_reviews_edit',
'mapping_1': 'hotel',
'param_1': 'hotelId',
'attribute_1': 'id',
'param_2': 'id',
'attribute_2': 'id'
}
} %}
{% endblock %}