{# templates/admin/projet/_kpis_show.html.twig #} {# Initialisation des variables avec la nouvelle syntaxe de filtrage Twig #} {% set totalLots = projet.lots|length %} {% set vendusLots = projet.lots|filter(l => l.statut.value in ['VENDU', 'LIVRE']) %} {% set vendusCount = vendusLots|length %} {% set reservesCount = projet.lots|filter(l => l.statut.value == 'RESERVE')|length %} {% set dispoCount = projet.lots|filter(l => l.statut.value == 'DISPONIBLE')|length %} {% set ratioVente = totalLots > 0 ? (vendusCount / totalLots * 100) : 0 %}