prestation/Vue/Ajaxlistegarantsdesactives/index.php
2025-12-01 18:54:33 +00:00

30 lines
1.3 KiB
PHP

<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:retour_gc_assureur(<?= $idGc ?>);" style='font-size:9pt;' > </td>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>