radiantrh/radiantproduction/Vue/Reseausoins/index.php
2025-12-27 18:29:36 +00:00

27 lines
1.3 KiB
PHP

<?php $this->titre = "INTER-SANTE - Liste des Catégories Assurés"; ?>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" 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") ?> </th>
<th style="text-align:center" > <?= _("Modifier") ?> </th>
<th style="text-align:center" > <?= _("Supprimer") ?> </th>
</tr>
</thead>
<tbody>
<?php foreach ($reseaus as $reseau):
$idReseau = $this->nettoyer($reseau['id']);
?>
<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"> <input class = "form-control btn btn-primary" style="font-size:10pt;" type="button" value="<?= _("Modifier") ?>" onClick="javascript:modifier_reseau(<?= $idReseau ?>);"> </td>
<td align="center"> <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>