{{ collaborateur }} sur {{ projet.nom }}
{{ total_traite }}
Sites traités
{{ prevu }}
Sites prévus
{{ (prevu - total_traite) if prevu > total_traite else 0 }}
Restants
← {{ prev_month }}/{{ prev_year }}
{{ month }}/{{ year }}
{{ next_month }}/{{ next_year }} →
LunMarMerJeuVenSamDim
{% for d in cal %}
{% if d is none %}
{% else %}
{% set ds = "%04d-%02d-%02d"|format(year,month,d) %}
{% set td = tmap.get(ds, {"nb":0,"helico":false,"helico_cr":false,"cr":false}) %}
{% set istoday = (today.year==year and today.month==month and today.day==d) %}
{{ d }}
{% if td.nb>0 %}{{ td.nb }}{% endif %}
{% set fl=[] %}{% if td.helico %}{% set _=fl.append('H') %}{% endif %}{% if td.helico_cr %}{% set _=fl.append('HC') %}{% endif %}{% if td.cr %}{% set _=fl.append('CR') %}{% endif %}
{% if fl %}{{ fl|join(' ') }}{% endif %}
{% endif %}{% endfor %}