Calendrier des Congés {{ month }}/{{ year }}
← {{ prev_month }}/{{ prev_year }}
{{ month }}/{{ year }}
{{ next_month }}/{{ next_year }} →
{% if is_admin %}
{% endif %}
Aujourd'hui
LunMarMerJeuVenSamDim
{% for d in cal %}
{% if d is none %}
{% else %}
{% set istoday = (today.year == year and today.month == month and today.day == d.day) %}
{% set seen = {} %}
{{ d.day }}
{% if d.ferie %}{{ d.ferie }}{% endif %}
{% if d.conges %}
{% endif %}
{% endfor %}
{% for c in d.conges %}
{{ c.nom }} · {{ c.type[:4] }}
{% endfor %}
{% endif %}
Légende :
Férié
{% for d in cal if d and d.conges %}
{% for c in d.conges %}
{% if c.type not in seen %}
{% set _ = seen.update({c.type: c.couleur}) %}
{{ c.type }}
{% endif %}
{% endfor %}
{% endfor %}
{% if not seen %}Aucun congé ce mois{% endif %}