{% import 'shared/componnents/_macros/_alerts.html.twig' as alerts %}
{% extends 'base.html.twig' %}
{% block title %}Ajouter nouveau equipement{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% if form.equipment.vars.errors|length %}
{{ alerts.notification(form_errors(form.equipment), 'info') }}
{% endif %}
{% include 'shared/layout/_content-header.html.twig' with {
'item_lien': {
0: {
'label': hotel.name,
'path': path('app_hotel_detail', {'hotelId': hotel.id})
}
}
}%}
{% if equipment %}
{% include 'hotel_equipment/_form.html.twig' with {
'path': path('app_hotel_equipment_new', {'hotelId': hotel.id}),
'path_list': path('app_hotel_equipment_index', {'hotelId': hotel.id}),
'label_btn': 'Ajouter',
'title': 'Ajouter Equipement'
} %}
{% else %}
{{ alerts.alert('please_create_them_here'|trans, 'danger', 'fa fa-fw fa-warning', 'Warning !', path('app_equipment_index')) }}
{% endif %}
{% endblock %}