35 lines
1.8 KiB
PHP
Executable File
35 lines
1.8 KiB
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Réseaux de soins de santé"; ?>
|
|
|
|
<legend> <?= _("Réseaux de soins de santé") ?> </legend>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabliste compact" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center" >Code</th>
|
|
<th style="text-align:center" > <?= _("Libellé") ?> </th>
|
|
<th style="text-align:center" > <?= _("Ticket Modérateur (%)") ?> </th>
|
|
<th style="text-align:center" > <?= _("Configurer") ?> </th>
|
|
<th style="text-align:center" > <?= _("Dupliquer") ?> </th>
|
|
<th style="text-align:center" > <?= _("Supprimer") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($reseaus as $reseau):
|
|
$idReseau = $this->nettoyer($reseau['id']);
|
|
$libelle = $this->nettoyer($reseau['libelle']);
|
|
?>
|
|
<tr valign="top">
|
|
<td align="center"> <?= $this->nettoyer($reseau['codeReseau']) ?> </td>
|
|
<td> <?= $this->nettoyer($reseau['libelle']) ?> </td>
|
|
<td align="center"> <?= $this->nettoyer($reseau['tm']) ?> </td>
|
|
<td align="center" width="10%"> <input class = "form-control btn btn-primary" style="font-size:10pt;" type="button" value="<?= _("Configurer") ?>" onclick="javascript:modifier_reseau(<?= $idReseau ?>);"> </td>
|
|
<td align="center" width="10%"> <input class = "form-control btn btn-warning" style="font-size:10pt;" type="button" value="<?= _("Dupliquer") ?>" onclick="javascript:dupliquer_reseau(<?= $idReseau ?>);"> </td>
|
|
<td align="center" width="10%"> <input class = "form-control btn btn-danger" style="font-size:10pt;" type="button" value="<?= _("Supprimer") ?>" onclick="javascript:supprimer_reseau(<?= $idReseau ?>);"> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_dupliquer_reseau" class="modal fade">
|
|
|
|
</div>
|