43 lines
1.6 KiB
PHP
Executable File
43 lines
1.6 KiB
PHP
Executable File
<?php $this->titre = "INTER SANTE - Utilisateurs Assureur"; ?>
|
|
|
|
|
|
<legend> <?= _("Liste des Utilisateurs du centre de gestion") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="7%" > <?= _("Profil") ?> </td>
|
|
<td>
|
|
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codeProfil" NAME="codeProfil" autofocus >
|
|
<?php liste_options_consultation($profil,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="7%" align="center"> <?= _("Point Vente") ?> </td>
|
|
<td width="43%">
|
|
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codePointVente" NAME="codePointVente" >
|
|
<?php liste_options_consultation($pointvente, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> <?= _("Nom") ?> </td>
|
|
<td> <INPUT style='font-size:10pt;' class="form-control" type="text" id="nom" name="nom" onkeypress="javascript:ctrlkeypress_liste_users_ass(event);" > </td>
|
|
|
|
<td align="center"> <?= _("Prenoms") ?> </td>
|
|
<td> <INPUT style='font-size:10pt;' class="form-control" type="text" id="prenoms" name="prenoms" onkeypress="javascript:ctrlkeypress_liste_users_ass(event);" > </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td colspan="3"> <button style='font-size:10pt;' type="button" class="form-control btn btn-primary" onclick="javascript:afficher_liste_users_ass();"> <?= _("Afficher...") ?> </button> </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_liste_users">
|
|
</div>
|