ser
This commit is contained in:
parent
fa1f1101dc
commit
baafd3ae55
|
|
@ -1,5 +1,5 @@
|
||||||
<div class="card border-0 shadow-sm border-start border-4 border-primary">
|
<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">
|
<h6 class="mb-0 fw-bold text-uppercase text-primary small" id="titre_formData">
|
||||||
<i class="fas fa-plus-circle me-2"></i><?= _("Ajouter un nouveau Bureau") ?>
|
<i class="fas fa-plus-circle me-2"></i><?= _("Ajouter un nouveau Bureau") ?>
|
||||||
</h6>
|
</h6>
|
||||||
|
|
|
||||||
|
|
@ -1,16 +1,16 @@
|
||||||
<?php
|
<?php
|
||||||
// Nettoyage initial des données
|
|
||||||
$nbreTotal = count($bureau);
|
$nbreTotal = count($bureau);
|
||||||
|
$nbreAffiche = ($nbreTotal < 10) ? '0'.$nbreTotal : format_N($nbreTotal);
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="card border-0 shadow-sm overflow-hidden">
|
<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">
|
<div class="d-flex align-items-center">
|
||||||
<h6 class="mb-0 fw-bold text-uppercase text-primary small">
|
<h6 class="mb-0 fw-bold text-uppercase text-primary small">
|
||||||
<i class="fas fa-building me-2"></i><?= _("Référentiel des Bureaux") ?>
|
<i class="fas fa-building me-2"></i><?= _("Référentiel des Bureaux") ?>
|
||||||
</h6>
|
</h6>
|
||||||
<span class="badge bg-primary-ghost text-primary ms-3 px-3 py-2 rounded-pill fw-bold" id="badge-total">
|
<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>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div id="table-buttons" class="d-flex gap-2"></div>
|
<div id="table-buttons" class="d-flex gap-2"></div>
|
||||||
|
|
@ -81,5 +81,4 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.shadow-xs { box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
|
.shadow-xs { box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
|
||||||
.text-primary { color: #212e53 !important; }
|
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<div class="card border-0 shadow-sm border-start border-4 border-primary">
|
<div class="card border-0 shadow-sm border-start border-4 border-warning">
|
||||||
<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">
|
<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 bureau") ?>
|
<i class="fas fa-edit me-2"></i><?= _("Modification des données du bureau") ?>
|
||||||
</h6>
|
</h6>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user