65 lines
2.8 KiB
PHP
Executable File
65 lines
2.8 KiB
PHP
Executable File
<div id="div_liste_users">
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabspeciale compact" style="font-size:9pt;">
|
|
<thead>
|
|
<tr>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Nom") ?> </th>
|
|
<th style='text-align:center'> <?= _("Prenoms") ?> </th>
|
|
<th style='text-align:center' width="15%">Login</th>
|
|
<th style='text-align:center'> <?= _("Profil") ?> </th>
|
|
<th style='text-align:center'> <?= _("Code") ?> </th>
|
|
<th style='text-align:center' width="8%"> <?= _("Langue") ?> </th>
|
|
<th style='text-align:center'> <?= _("Actif?") ?> </th>
|
|
<th style='text-align:center'> <?= _("Act Vis?") ?> </th>
|
|
<th style='text-align:center'> <?= _("Affect Vis?") ?> </th>
|
|
<th style='text-align:center' width="10%"> <?= _("Modif") ?> </th>
|
|
</tr>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($users as $users_ass):
|
|
$idUtilisateur = $users_ass['id'];
|
|
$codeUtilisateur = $users_ass['codeUtilisateur'];
|
|
$actif = $users_ass['actif'];
|
|
$actVisible = $users_ass['actVisible'];
|
|
$reInit = $users_ass['reInit'];
|
|
$codeLangue = $users_ass['codeLangue'];
|
|
$AffectionVisible = $users_ass['AffectionVisible'];
|
|
?>
|
|
<tr valign="top">
|
|
<td align="center"><?= $this->nettoyer($users_ass['nom']) ?></td>
|
|
<td align="center"><?= $this->nettoyer($users_ass['prenoms']) ?></td>
|
|
<td align="center"><?= $this->nettoyer($users_ass['codeUtilisateur']) ?></td>
|
|
<td align="center"><?= $this->nettoyer($users_ass['profil']) ?></td>
|
|
<td align="center"><?= $this->nettoyer($users_ass['codeProfil']) ?></td>
|
|
<td align="center"><?= $codeLangue ?></td>
|
|
|
|
<?php if($actif=='1'): ?>
|
|
<td align='center'> <input type="checkbox" checked value="<?php echo $actif ; ?>" disabled ></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" value="<?php echo $actif ; ?>" disabled ></td>
|
|
<?php endif; ?>
|
|
|
|
<?php if($actVisible=='1'): ?>
|
|
<td align='center'> <input type="checkbox" checked value="<?php echo $actVisible ; ?>" disabled ></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" value="<?php echo $actVisible ; ?>" disabled ></td>
|
|
<?php endif; ?>
|
|
|
|
<?php if($AffectionVisible=='1'): ?>
|
|
<td align='center'> <input type="checkbox" checked value="<?php echo $AffectionVisible ; ?>" disabled ></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" value="<?php echo $AffectionVisible ; ?>" disabled ></td>
|
|
<?php endif; ?>
|
|
|
|
<td>
|
|
<input class = "form-control btn btn-info" type="button" value="<?= _("Modif") ?>" onClick="javascript:afficher_users_ass_id(<?= $idUtilisateur ?>);" style='font-size:9pt;' >
|
|
</td>
|
|
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|