{% set trans_day_hash = { Monday: 'Lundi', Tuesday: 'Mardi', Wednesday: 'Mercredi', Thursday: 'Jeudi', Friday: 'Vendredi', Saturday: 'Samedi', Sunday: 'Dimanche' } %} {% set index = 0 %} {% extends 'base.html.twig' %} {% block title %} Pointage dossier {{ dossier.intituleFormation }} {% endblock %} {% block body %}
{% if candidats|length == 0 %}
Aucun candidat n'a pas été affecté pour cette formation
{% else %}

Emploi du temps du dossier : {{ dossier.intituleFormation }}

{% for action in tabActionsDossier %} {% endfor %} {% for candidat in candidats %} {% if tabActionsCandidats|length > 0 %} {% for action in tabActionsCandidats[index] %} {% endfor %} {% endif %} {% set index = index + 1 %} {% endfor %}
{{ trans_day_hash[action.dateIntervention|date('l')] }} {{ action.dateIntervention|date('d/m/Y') }}
{{ candidat.nom }} {{ candidat.prenom }}
{% if candidat.statut == "Abandon" %} Abandon {% endif %}
Module {{ action[4]}} {% if (action[2]) %} Abscent {% else %} Présent {% endif %}
{% endif %}
{% endblock %}