48 lines
2.3 KiB
PHP
48 lines
2.3 KiB
PHP
<?php $this->titre = "INTER-SANTE - Modification Réseau"; ?>
|
|
|
|
<input class="sr-only" type="text" id="idReseau" name="idReseau" value="<?= $this->nettoyer($reseau['idReseau']) ?>" >
|
|
|
|
<legend> <?= _("Anciennes valeurs") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > Code </td>
|
|
<td width="10%" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?=$this->nettoyer($reseau['codeReseau'])?>" readonly ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" value="<?=$this->nettoyer($reseau['libelle'])?>" readonly ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("T M") ?> </td>
|
|
<td width="10%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="<?=$this->nettoyer($reseau['tm'])?>" readonly ></td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<legend> <?= _("Nouvelles valeurs") ?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" > Code </td>
|
|
<td width="10%"><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="codeReseau" NAME="codeReseau" value="<?=$this->nettoyer($reseau['codeReseau'])?>" readonly ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
|
|
<td><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" value="<?=$this->nettoyer($reseau['libelle'])?>" ></td>
|
|
|
|
<td width="10%" align="center" > <?= _("T M") ?> </td>
|
|
<td width="10%" ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" id="tm" NAME="tm" value="<?= $this->nettoyer($reseau['tm']) ?>" ></td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td> </td>
|
|
<td colspan="2" > <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_modif_reseaus();" style='font-size:10pt;' > </td>
|
|
|
|
<td> </td>
|
|
<td colspan="2" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_liste_reseaus();" style='font-size:10pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|