35 lines
1.1 KiB
PHP
Executable File
35 lines
1.1 KiB
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Héritage de droits"; ?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
|
|
<legend> <?= _("Copie des droits d'un profil vers un autre") ?> </legend>
|
|
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr valign="top">
|
|
<td align='center'>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="codeProfilSource" NAME="codeProfilSource" required AUTOCOMPLETE="OFF" autofocus >
|
|
<?php liste_options($profil_source,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align='center'> ==> </td>
|
|
|
|
<td align='center'>
|
|
<SELECT style="font-size:10pt;" class="form-select" id="codeProfilDest" NAME="codeProfilDest" required AUTOCOMPLETE="OFF" >
|
|
<?php liste_options($profil_destination,""); ?>
|
|
</SELECT>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<td colspan="3" align='center'>
|
|
<button type="button" style="font-size:10pt;" class="form-control btn btn-primary" onclick="javascript:tranferer_droits_profil_ass();" > <?= _("Transférer") ?> </button>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|