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

Aucun livrable d'instrumentation

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