summaryrefslogtreecommitdiff
path: root/appli_3_alpha_old/include/ludo/div_create_or_modif.php
diff options
context:
space:
mode:
Diffstat (limited to 'appli_3_alpha_old/include/ludo/div_create_or_modif.php')
-rw-r--r--appli_3_alpha_old/include/ludo/div_create_or_modif.php19
1 files changed, 9 insertions, 10 deletions
diff --git a/appli_3_alpha_old/include/ludo/div_create_or_modif.php b/appli_3_alpha_old/include/ludo/div_create_or_modif.php
index b7f7193..e6c3f8e 100644
--- a/appli_3_alpha_old/include/ludo/div_create_or_modif.php
+++ b/appli_3_alpha_old/include/ludo/div_create_or_modif.php
@@ -29,7 +29,7 @@ if ( isset ( $_GET['idR']) )
<tr>
<td><strong>Objet :</strong></td>
<td>
- <input name="objetR" type="text"<?php if ($isModif) { echo 'value="' . $objetR .'"'; } ?>></input>
+ <input name="objetR" type="text" size="40" <?php if ($isModif) { echo 'value="' . $objetR .'"'; } ?>></input>
</td>
</tr>
<!-- <tr>
@@ -42,29 +42,27 @@ if ( isset ( $_GET['idR']) )
<tr>
<td><strong>Lieu :</strong></td>
<td>
- <input name="lieuR" type="text"<?php if ($isModif) { echo 'value="' . $lieuR .'"'; } ?>></input>
+ <input name="lieuR" type="text" size="40" <?php if ($isModif) { echo 'value="' . $lieuR .'"'; } ?>></input>
</td>
</tr>
<tr>
<td><strong>Ordre du jour :</strong></td>
<td>
- <input name="ordreJourR" type="text"<?php if ($isModif) { echo 'value="' . $ordreJourR .'"'; } ?>></input>
+ <textarea name="ordreJourR" cols="40" rows="3"><?php if ($isModif) { echo $ordreJourR; } ?></textarea>
</td>
</tr>
<tr>
<td><strong>Remarques :</strong></td>
<td>
- <input name="remarquesR" type="text"<?php if ($isModif) { echo 'value="' . $remarquesR .'"'; } ?>></input>
+ <textarea name="remarquesR" cols="40" rows="3"><?php if ($isModif) { echo $remarquesR; } ?></textarea>
</td>
</tr>
<tr>
<td><strong>Etat :</strong></td>
<td>
- <input type="checkbox">Annulée</input>
+ <input name="isCancelled" type="checkbox">Annulée</input>
<?php
// TODO : refléter l'état de la BD pour l'annulation !
- //~ echo '<a href="#confirmAnnulation" onclick="loadid(\'include/ludo/popConfirmAnnulR.php?idR=';
- //~ echo $idR . "','popfixer',true);popon('popfixer');\">Annuler</a>";
?>
</td>
</tr>
@@ -81,7 +79,8 @@ if ( isset ( $_GET['idR']) )
</tr>
</tbody>
</table>
-</form>
+ <input name="action" type="hidden" value="modif_detail_reunion" />
<?php
-// POST vers details_reunion.php?action=create_or_modif_reunion
-?> \ No newline at end of file
+ echo ' <input name="idR" type="hidden" value="' . $idR . '" />'
+?>
+</form> \ No newline at end of file