{% extends 'etl/base.twig' %} {% block title %}État des Lieux - #{{ mission.numReservation }}{% endblock %} {% block body %}
{# HEADER #}

État des Lieux

Réf: #{{ mission.numReservation }}

{# PHOTOS / VIDEOS #}

Photos & Vidéos

{% for file in etatLieux.files %}
{% if file.type == 'photo' %} Photo {% else %} {% endif %}
{% else %}
Aucun média ajouté.
{% endfor %}
{# LIGHTBOX MODAL #}
{# POINTS DE CONTROLE #}

Points de Contrôle

{% for reserve in mission.productReserves %} {% set product = reserve.product %} {% if product.productPointControlls|length > 0 %}

{{ product.name }}

{% for point in product.productPointControlls %} {# Try to find existing status/comment in etatLieux.pointControls #} {% set existingPoint = null %} {% for ep in etatLieux.pointControls %} {% if ep.name == point.name %} {% set existingPoint = ep %} {% endif %} {% endfor %}

{{ point.name }}

{% endfor %}
{% endif %} {% endfor %}
{# COMMENTAIRES #}

Commentaires

{% for comment in etatLieux.comments %}

{{ comment.createdAt|date('d/m H:i') }}

{{ comment.content }}

{% else %}

Aucun commentaire.

{% endfor %}
{# ACTION TERMINER #}
{% endblock %}