{% if data.reunions %} {% set nbrReunion = 0 %} {% for r in data.reunions %} {% set reunionRow = 0 %} {% set nbrReunion = nbrReunion + 1 %} {% set reunionRow = reunionRow + r.forfaitHoraire + r.coutLocationSalle + r.coutLocationMateriel + r.coutRestauration + r.coutCollation %} {% endfor %}
Reunions Date Objet Forfait Salle Matériel Restauration Collation Total
{{nbrReunion}} {{ r.date | date('d/m/Y')}} {{r.objet}} {{r.forfaitHoraire ? r.forfaitHoraire ~ " €" : " "}} {{r.coutLocationSalle ? r.coutLocationSalle ~ " €" : " "}} {{r.coutLocationMateriel ? r.coutLocationMateriel ~ " €" : " "}} {{r.coutRestauration ? r.coutRestauration ~ " €": " "}} {{r.coutCollation ? r.coutCollation ~ " €": " "}} {{reunionRow ? reunionRow ~ " €" : " "}} {{ r.payer ? "Réglé" : "Pas réglé"}} modifier
{{data.totalReunions}} €
{% endif %}