{% extends "base.html" %} {% block title %}Tableau de bord{% endblock %} {% block content %}

Aujourd'hui — {{ today.strftime('%A %d %B %Y') }}

{% if today_entry %}

{{ today_entry.day_type }} — {{ today_entry.total_hours_str() }}

Modifier {% else %} + Saisir ma journée {% endif %}

Semaine courante

Total {{ week_actual_str }}
Écart vs 38h45 {{ '+' if week_balance >= 0 else '-' }}{{ week_balance_str }}

Ce mois

{% for vehicle_id, km in month_km.items() %}
{{ vehicle_id | capitalize }} {{ km }} km
{% endfor %}
CO₂ {{ month_co2_kg }} kg

Congés / RTT

Congés {{ used.conges }} / {{ balance.conges_total }} j
RTT {{ used.rtt }} / {{ balance.rtt_total }} j
{% endblock %}