{% set trans_day_short_hash = { Monday: 'Lu', Tuesday: 'Ma', Wednesday: 'Me', Thursday: 'Je', Friday: 'Ve', Saturday: 'Sa', Sunday: 'Di' } %} {% set trans_month_hash = { Jan : 'Janvier', Feb : 'Février', Mar : 'Mars', Apr : 'Avril', May : 'Mai', Jun : 'Juin', Jul : 'Juillet', Aug : 'Août', Sep : 'Septembre', Oct : 'Octobre', Nov : 'Novembre', Dec : 'Décembre' } %}

{{ dossierActuel.intituleFormation }}

{% for month,weeks in tabActionsCandidatMonth %}
{% if indexInf %} {% else %} {% endif %} {{ trans_month_hash[('01-'~month) | date('M')] }} {{ ('01-'~month) | date('Y') }} {% if indexSup %} {% else %} {% endif %}
{% for week,days in weeks %}
{{ week }}
{% for day in days %} {% if day is iterable %}
{{ trans_day_short_hash[day[1]|date('l')] }} {{ day[1]|date('d') }}
{% else %}
{{ trans_day_short_hash[day|date('l')] }} {{ day|date('d') }}
{% endif %} {% endfor %}
{% endfor %}
{% endfor %}