{% if is_admin %} ⚙️ 📊 KPI {% endif %} {% if user.role == 'super_admin' %} 📨 Invitations {% endif %} {{ user.full_name }} Déconnexion

Gestion des congés

+ Nouvelle demande
{% if conges %} {% for c in conges %} {% endfor %}
Personne Équipe Type Du Au Nb jours Statut Demandeur Commentaire Actions
{{ c.personne_nom }} {{ c.equipe }} {{ c.type_nom }} {{ c.date_debut }} {{ c.date_fin }} {{ c.nb_jours }} {{ c.statut }} {{ c.demandeur_nom }} {{ c.commentaire or '—' }} {% if c.statut == 'EN ATTENTE' and is_admin %}
{% endif %} {% if is_admin or (c.statut == 'EN ATTENTE' and c.demandeur_nom == user.full_name) %} ✏️ {% endif %} {% if is_admin %}
{% endif %}
{% else %}

Aucune demande de congé. Cliquez sur « + Nouvelle demande » pour commencer.

{% endif %}