prestation/Vue/Gclistedesactives/index.php
2025-12-05 10:42:46 +00:00

33 lines
1.4 KiB
PHP
Executable File

<?php $this->titre = "INTER-SANTE - Garants"; ?>
<legend> Liste des Garants Désactivés</legend>
<div id="div_lister_table" >
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:10pt;' >
<thead>
<tr>
<th style="text-align:center" width="10%" > Code </th>
<th width="25%" style="text-align:center" > <?= _("Nom") ?></th>
<th width="30%" style="text-align:center" > <?= _("Type Garant") ?></th>
<th width="25%" style="text-align:center" > <?= _("Représentant") ?></th>
<th width="10%" style="text-align:center" > <?= _("Réactiver") ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($gcs as $gc):
$idGc = $this->nettoyer($gc['id']);
$codeGcAssureur = $this->nettoyer($gc['codeGcAssureur']);
?>
<tr valign="top">
<td align="center"> <?= $this->nettoyer($gc['codeGcAssureur']) ?></td>
<td align="center"> <?= $this->nettoyer($gc['libelle']) ?> </td>
<td align="center"> <?= $this->nettoyer($gc['typegc']) ?> </td>
<td align="center"> <?= $this->nettoyer($gc['representant']) ?> </td>
<td align="center">
<input class = "form-control btn btn-warning" type="button" value="<?= _("Réactiver") ?>" onClick="javascript:reactive_gc_assureur(<?= $idGc ?>);" style='font-size:9pt;' > </td>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>