{% extends 'base.html.twig' %} {% block body %}
Réception d'Instrumentation {% if not is_granted('ROLE_WIIFOR') %} {% endif %}
{% if instrumentation_reception|length == 0 %}

Aucune réception d'instrumentation

{% else %}
{% include "./layouts/message_flash.html.twig" %}
{% for reception in instrumentation_reception %} {% endfor %}
Hôtel Référence Dates prévisionnelles Dates réelles Statut Validation Documents Actions
{{ reception.hotel.nom }}
{{ reception.hotel.adresse.ville }}
RÉC-{{ reception.id }}
{% if reception.prevStartAt and reception.prevEndAt %} {{ reception.prevStartAt|date('d/m/Y') }} - {{ reception.prevEndAt|date('d/m/Y') }} {% else %} --- {% endif %}
{% if reception.reaStartAt and reception.reaEndAt %} {{ reception.reaStartAt|date('d/m/Y') }} - {{ reception.reaEndAt|date('d/m/Y') }} {% else %} --- {% endif %}
{{ reception.reaEndAt ? 'Terminé' : 'En cours' }} {{ reception.receptionValide ? 'Validé' : 'Non validé' }}
{{ reception.receptionDocuments|length }} document(s)
{% endif %}
{% endblock %} {% block javascripts %} {{ encore_entry_script_tags('instrumentation_reception_index') }} {% endblock %}