{% extends "base.html" %} {% block content %}
Compétition interne

Classement

Précision sur le zéro heure supp · Conformité aux directives

{% if ranking %} {# ── Podium top 3 ── #} {% if ranking|length >= 1 %}
{% set top3 = ranking[:3] %} {# réordonner : 2e à gauche, 1er au centre, 3e à droite #} {% if top3|length == 1 %} {% set order = [top3[0]] %} {% elif top3|length == 2 %} {% set order = [top3[1], top3[0]] %} {% else %} {% set order = [top3[1], top3[0], top3[2]] %} {% endif %} {% for u in order %} {% set rank = ranking.index(u) + 1 %}
{{ u.score }}
{{ u.display_name }}
{% if rank == 1 %}🥇{% elif rank == 2 %}🥈{% else %}🥉{% endif %}
#{{ rank }}
{% endfor %}
{% endif %} {# ── Tableau complet ── #}
{% for u in ranking %} {% endfor %}
# Utilisateur Score Préc. zéro Conformité Écart moy. Semaines Jours
{% if loop.index == 1 %}1 {% elif loop.index == 2 %}2 {% elif loop.index == 3 %}3 {% else %}{{ loop.index }} {% endif %} {{ u.display_name }} {% if u.user_id == current_user %}moi{% endif %}
{{ u.score }}
{{ u.pct_zero if u.pct_zero is not none else '—' }}{% if u.pct_zero is not none %}%{% endif %} {{ u.conf_pct if u.conf_pct is not none else '—' }}{% if u.conf_pct is not none %}%{% endif %} {{ u.avg_delta }} {{ u.n_semaines }} {{ u.n_jours }}
Score = préc. zéro × 0,6 + conformité × 0,4
Préc. zéro = % semaines avec |solde| ≤ 30 min
Conformité = % jours respectant les 4 créneaux (≤9h, ≥12h, ≤14h, ≥17h)
{% else %}
Aucun utilisateur enregistré pour le moment.
{% endif %} {% endblock %}