{% import 'shared/componnents/_macros/_alerts.html.twig' as alerts %}
{% extends 'base.html.twig' %}
{% block title %} Ajouter contact {% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% if form.calendar.start.vars.errors|length %}
{{ alerts.notification(form_errors(form.calendar.start), 'info') }}
{% endif %}
{% include 'shared/layout/_content-header.html.twig' with {
'item_lien': {
0: {
'label': hotel.name,
'path': path('app_hotel_detail', {'hotelId': hotel.id})
}
}
} %}
{% include 'hotel_contract/_form.html.twig' with {
'path': path('app_hotel_contract_new', {'hotelId': hotel.id}),
'path_list': path('app_hotel_contract_index', {'hotelId': hotel.id}),
'label_btn': 'Ajouter',
'class_alert': 'success'
} %}
{% endblock %}