36 lines
990 B
PHP
36 lines
990 B
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Profils Utilisateurs";
|
|
?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<div id="div_liste">
|
|
<legend> <?= _("Profils Utilisateurs") ?> </legend>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive tabspeciale compact" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center' width="20%">Code</th>
|
|
<th style='text-align:center' > <?= _("Français") ?> </th>
|
|
<th style='text-align:center' > <?= _("ANGLAIS") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($profils as $profil):
|
|
?>
|
|
<tr valign="top">
|
|
<td align='center'> <?= $this->nettoyer($profil['codeProfil']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($profil['libelle']) ?> </td>
|
|
<td align='center'> <?= $this->nettoyer($profil['libelleEng']) ?> </td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id ="div_export_a">
|
|
</div>
|
|
|