{% if data.intervenants %} {% set nbrInter = 0 %} {% set totalIntervention = 0 %} {% for i in data.intervenants %} {% set nbrInter = nbrInter + 1 %} {% if i.payer %} {% else %} {% set totalIntervention = totalIntervention + i.cout %} {% endif %} {% endfor %}
Intervenants Durée Réalisation Observation Reglement Coût
{{ i.date | date('d/m/Y')}} {{ i.duree | date('H:i')}} {{ i.realisations }} {{ i.observation }} {{ i.payer ? "réglé" : "pas réglé"}} {{ i.cout ? i.cout ~ " €" : ""}} modifier
Total {{ data.totalIntervenants }} €
{% endif %}