44 lines
1.9 KiB
PHP
Executable File
44 lines
1.9 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER-SANTE - Nouvelle Requête Personnalisée";
|
|
?>
|
|
|
|
<legend> <?= _("Nouvelle Requête Personnalisée") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > <?= _("Nom Français") ?> </td>
|
|
<td width="40%" ><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="nomRequete" NAME="nomRequete" required AUTOCOMPLETE="OFF" autofocus ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Nom Anglais") ?> </td>
|
|
<td><INPUT style='font-size:10pt;' class="form-control" TYPE="text" id="nomRequeteEng" NAME="nomRequeteEng" required AUTOCOMPLETE="OFF" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> Description </td>
|
|
<td colspan="3"> <textarea style='font-size:10pt;' id ="descriptionRequete" name="descriptionRequete" rows="10" class="form-control" required AUTOCOMPLETE="OFF" ></textarea> </td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td align="center" > <?= _("Source Données") ?> </td>
|
|
<td>
|
|
<SELECT style='font-size:10pt;' class="form-control" id="sourceDonnees" NAME="sourceDonnees" required AUTOCOMPLETE="OFF" >
|
|
<?php liste_options($sourcesrequete, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" > <?= _("Ordre") ?> </td>
|
|
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="ordreRequete" NAME="ordreRequete" TYPE="text" onBlur="javascript:controle_numerique_new(this.id, 0);" value="0" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_requeteperso();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:param_requeteperso_liste();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|