This commit is contained in:
KONE SOREL 2026-04-11 15:35:04 +00:00
parent 64f41357ec
commit 8e56243547
3 changed files with 5 additions and 6 deletions

View File

@ -1,5 +1,5 @@
<div class="card border-0 shadow-sm border-start border-4 border-primary">
<div class="card-header bg-white py-3 border-bottom">
<div class="card-header bg-light py-3 border-bottom">
<h6 class="mb-0 fw-bold text-uppercase text-primary small" id="titre_formData">
<i class="fas fa-microscope me-2"></i><?= _("Ajouter un nouveau type d'affection") ?>
</h6>

View File

@ -1,16 +1,16 @@
<?php
// Préparation du compteur Standard Neutral Pro
$nbreTotal = count($typeaffection);
$nbreAffiche = ($nbreTotal < 10) ? '0'.$nbreTotal : format_N($nbreTotal);
?>
<div class="card border-0 shadow-sm overflow-hidden">
<div class="card-header bg-white py-3 border-bottom d-flex justify-content-between align-items-center">
<div class="card-header bg-light py-3 border-bottom d-flex justify-content-between align-items-center">
<div class="d-flex align-items-center">
<h6 class="mb-0 fw-bold text-uppercase text-primary small">
<i class="fas fa-microscope me-2"></i><?= _("Référentiel des Types d'Affection") ?>
</h6>
<span class="badge bg-primary-ghost text-primary ms-3 px-3 py-2 rounded-pill fw-bold" id="badge-total">
<?= $nbreTotal ?> <?= _("Lignes") ?>
<?= $nbreAffiche ?> <?= $nbreTotal > "1" ? _("lignes") : _("ligne") ?>
</span>
</div>
<div id="table-buttons" class="d-flex gap-2"></div>

View File

@ -1,5 +1,5 @@
<div class="card border-0 shadow-sm border-start border-4 border-primary">
<div class="card-header bg-white py-3 border-bottom">
<div class="card-header bg-light py-3 border-bottom">
<h6 class="mb-0 fw-bold text-uppercase text-warning small" id="titre_formData">
<i class="fas fa-edit me-2"></i><?= _("Modification des données du type d'affection") ?>
</h6>
@ -55,7 +55,6 @@
</select>
</div>
</div>
</div>
</form>
</div>