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

{{ today | date_fr }}

Aujourd'hui

{% if today_entry %}
{{ today_entry.total_hours_str() }} travaillées
{{ today_entry.day_type | day_type_fr }}{% if today_entry.motor_vehicle_id %} · {{ today_entry.motor_vehicle_id }}{% endif %} Modifier →
{% if today_entry.comment %}

{{ today_entry.comment }}

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

Semaine en cours

{{ week_actual_str }}

objectif 38h45

{{ '+' if week_balance >= 0 else '−' }}{{ week_balance_str }}
{% if month_km %}

Ce mois — déplacements

{% for vehicle_id, km in month_km.items() %}
{{ vehicles[vehicle_id].name if vehicle_id in vehicles else vehicle_id | capitalize }} {{ km }} km
{% endfor %}
CO₂ {{ month_co2_kg }} kg
{% endif %}

Solde congés & RTT

CONGÉS {{ used.conges }} / {{ balance.conges_total }} j
RTT {{ used.rtt }} / {{ balance.rtt_total }} j
{% endblock %}