48 lines
1.6 KiB
PHP
Executable File
48 lines
1.6 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Liste Utilisateurs Gestion Confiée";
|
|
$codeGcAssureur = $this->nettoyer($gc['codeGcAssureur']);
|
|
$nomGcAssureur = $this->nettoyer($gc['libelle']);
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<input class="sr-only" type="text" id="codeGcAssureur" name="codeGcAssureur" value="<?= $codeGcAssureur ?>" >
|
|
<input class="sr-only" type="text" id="idGc" name="idGc" value="<?= $this->nettoyer($gc['id']) ?>" >
|
|
|
|
<div id="div_liste">
|
|
<fieldset>
|
|
<legend> Utilisateurs Gestion Confiée : <?= $nomGcAssureur ?> </legend>
|
|
|
|
<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="20%">Login</th>
|
|
<th style='text-align:center' >Nom</th>
|
|
<th style='text-align:center' width="10%">langue</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($users as $user_gc):
|
|
$idUtilisateur = $user_gc['idUtilisateur'];
|
|
$codeUtilisateur = $user_gc['codeUtilisateur'];
|
|
$actif = $user_gc['actif'];
|
|
$actVisible = $user_gc['actVisible'];
|
|
$reInit = $user_gc['reInit'];
|
|
$codeLangue = $user_gc['codeLangue'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= $this->nettoyer($user_gc['codeUtilisateur']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($user_gc['utilisateur']) ?></td>
|
|
<td align='center'> <?= $codeLangue ?> </td>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
</div>
|
|
|
|
<div id ="div_export_a">
|
|
</div>
|
|
|