33 lines
985 B
PHP
Executable File
33 lines
985 B
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Utilisateurs par profil"; ?>
|
|
|
|
<form method="post">
|
|
<div class="row">
|
|
<div class="form-group">
|
|
<label for="codeProfil" class="col-lg-1 control-label"> <?= _("Profil") ?> </label>
|
|
<div class="col-lg-8">
|
|
<SELECT onChange="ajaxListerUtilisateursProfil();" class="form-control" id="codeProfil" NAME="codeProfil">
|
|
<?php liste_options($profil,""); ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="col-lg-2">
|
|
<button onClick="ajaxListerUtilisateursProfil();" type="button" class="btn btn-primary"> <?= _("Rafraichir") ?> </button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<fieldset>
|
|
<legend> <?= _("Liste Utilisateurs") ?> </legend>
|
|
<div id="listeutilisateur">
|
|
<?php liste_utilisateurs_profil($listeutilisateur); ?>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<div class="alert alert-danger" style="height:38px; padding:5px;" >
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|