{% if 'travaux' in components %}

Travaux en cours {% if travaux %} {{ travaux|length }} {% endif %}

{% if travaux %}
{% for travail in travaux %}

Travaux {{ travail.travaux }}

{{ travail.naturetravaux }} {% if travail.entreprise %} Par {{ travail.entreprise }} {% endif %}
{% if travail.demandeur or travail.naturedemandeur %}

Demandé par {% if travail.demandeur %} {{ travail.demandeur }} {% else %} ... {% endif %} {% if travail.naturedemandeur %} ({{ travail.naturedemandeur }}) {% endif %}

{% endif %}

Demande du {{ travail.datedemande|date("d/m/Y") }}

{% if travail.datedebinter %}

Début le {{ travail.datedebinter|date("d/m/Y") }}

{% else %}

Aucune date de début d'intervention

{% endif %} {% if travail.datefininter %}

Fin le {{ travail.datefininter|date("d/m/Y") }}

{% else %}

Aucune date de fin d'intervention

{% endif %}
{% endfor %}
{% else %}

Aucun travaux

{% endif %}
{% endif %}