dr
This commit is contained in:
parent
faeee996f2
commit
a65e09ee48
|
|
@ -1,3 +1,6 @@
|
|||
<?php
|
||||
$titre = _("Réseaux de Soins");
|
||||
?>
|
||||
<div class="page-content animate__animated animate__fadeIn">
|
||||
<div class="header-section mb-1">
|
||||
<div class="d-flex align-items-center justify-content-between bg-white p-3 shadow-sm border-start border-primary border-4" style="border-radius: var(--radius-md);">
|
||||
|
|
@ -6,15 +9,10 @@
|
|||
<i class="fas fa-network-wired fs-4"></i>
|
||||
</div>
|
||||
<div>
|
||||
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= _("Réseaux Soins") ?></h4>
|
||||
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= $titre ?></h4>
|
||||
<p class="text-muted small mb-0"><?= _("Gestion et configuration des réseaux de prestataires de santé") ?></p>
|
||||
</div>
|
||||
</div>
|
||||
<!--
|
||||
<button class="btn btn-primary rounded-pill px-4 fw-bold shadow-sm btn-sm" onclick="nouveau_reseau();">
|
||||
<i class="fas fa-plus me-1"></i> <?= _("Nouveau Réseau") ?>
|
||||
</button>
|
||||
-->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
@ -28,7 +26,7 @@
|
|||
<tr>
|
||||
<th class="py-3 ps-3 text-center" width="10%">ID</th>
|
||||
<th class="py-3"><?= _("Libellé du Réseau") ?></th>
|
||||
<th class="py-3 text-center" width="20%"><?= _("Actions") ?></th>
|
||||
<th class="py-3 text-center no-export" width="20%"><?= _("Actions") ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
@ -81,7 +79,7 @@
|
|||
// Initialisation SmartTable
|
||||
var checkDTReseaux = setInterval(function() {
|
||||
if (typeof initSmartTable === 'function') {
|
||||
initSmartTable('.datatable-reseaux', 'Liste_Reseaux_Soins', false);
|
||||
initSmartTable('.datatable-reseaux', '<?= $titre?>', false);
|
||||
clearInterval(checkDTReseaux);
|
||||
}
|
||||
}, 100);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user