newdesigngestionnaire/Vue/Heritageprofilass/index.php

38 lines
1.4 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Héritage de droits"; ?>
<script type="text/javascript">
</script>
<legend> <?= _("TRANSFERER Les 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' class="required" width="5%"> <?= _("Source") ?> </td>
<td align='center'>
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codeProfilSource" NAME="codeProfilSource" required AUTOCOMPLETE="OFF" autofocus >
<?php liste_options($profil_source,""); ?>
</SELECT>
</td>
<td align='center'> ==> </td>
<td align='center' class="required" width="7%"> <?= _("Destination") ?> </td>
<td align='center'>
<SELECT style="font-size:10pt;" class="form-control selectpicker" data-live-search="true" id="codeProfilDest" NAME="codeProfilDest" required AUTOCOMPLETE="OFF" >
<?php liste_options($profil_destination,""); ?>
</SELECT>
</td>
</tr>
<tr valign="top">
<td colspan="5" 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>