Sync: code local unifié

Synchronisation du code source local (fait foi).

Signed-off-by: lions dev Team
This commit is contained in:
dahoud
2026-03-15 16:25:45 +00:00
parent 6b28cf751e
commit 0dc050f422
179 changed files with 3355 additions and 992 deletions

View File

@@ -112,23 +112,23 @@
<c:choose>
<!-- Croissance en nombre -->
<c:when test="#{growthType == 'number'}">
<div class="flex align-items-center mb-2" rendered="#{showGrowth and not empty growthValue and growthValue != '0' and growthValue != '0.0'}">
<div class="flex align-items-center mb-2" rendered="#{showGrowth and not empty growthValue and growthValue != 0}">
<i class="pi pi-arrow-up text-green-500 text-sm mr-2"></i>
<span class="text-green-600 font-semibold text-sm mr-2">+#{growthValue}</span>
<span class="text-500 text-xs">#{growthLabel}</span>
</div>
<div class="text-500 text-xs" rendered="#{not showGrowth or empty growthValue or growthValue == '0' or growthValue == '0.0'}">
<div class="text-500 text-xs" rendered="#{not showGrowth or empty growthValue or growthValue == 0}">
#{noDataLabel}
</div>
</c:when>
<!-- Croissance en pourcentage (défaut) -->
<c:otherwise>
<div class="flex align-items-center mb-2" rendered="#{showGrowth and not empty growthValue and growthValue != '0' and growthValue != '0.0'}">
<div class="flex align-items-center mb-2" rendered="#{showGrowth and not empty growthValue and growthValue != 0}">
<i class="pi pi-arrow-up text-green-500 text-sm mr-2"></i>
<span class="text-green-600 font-semibold text-sm mr-2">+#{growthValue}%</span>
<span class="text-500 text-xs">#{growthLabel}</span>
</div>
<div class="text-500 text-xs" rendered="#{not showGrowth or empty growthValue or growthValue == '0' or growthValue == '0.0'}">
<div class="text-500 text-xs" rendered="#{not showGrowth or empty growthValue or growthValue == 0}">
#{noDataLabel}
</div>
</c:otherwise>