{% extends "base.html" %} {% block title %}Mes congés — GMAO Collège{% endblock %} {% block content %}

Mes congés

{% if upcoming %}
À venir
{% for l in upcoming %}
{{ l.label }}
{{ l.start_date|date_fmt }} → {{ l.end_date|date_fmt }} {{ l.duration_days }}j
{% if l.am_only %}Matin seulement{% endif %} {% if l.pm_only %}Après-midi seulement{% endif %}
{{ l.type_label }}
{% if l.notes %}{{ l.notes }}{% endif %}
{% endfor %} {% endif %} {% if past %}
Passés
{% for l in past %}
{{ l.label }} {{ l.start_date|date_fmt }} → {{ l.end_date|date_fmt }}
{% endfor %} {% endif %} {% if not upcoming and not past %}

Aucun congé enregistré

Ajouter un congé
{% endif %}
{% endblock %}