#468: can edit nl, events and payment requests before validation
[platal.git] / templates / include / form.evenement.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2006 Polytechnique.org                             *}
4 {*  http://opensource.polytechnique.org/                                  *}
5 {*                                                                        *}
6 {*  This program is free software; you can redistribute it and/or modify  *}
7 {*  it under the terms of the GNU General Public License as published by  *}
8 {*  the Free Software Foundation; either version 2 of the License, or     *}
9 {*  (at your option) any later version.                                   *}
10 {*                                                                        *}
11 {*  This program is distributed in the hope that it will be useful,       *}
12 {*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
13 {*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
14 {*  GNU General Public License for more details.                          *}
15 {*                                                                        *}
16 {*  You should have received a copy of the GNU General Public License     *}
17 {*  along with this program; if not, write to the Free Software           *}
18 {*  Foundation, Inc.,                                                     *}
19 {*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
20 {*                                                                        *}
21 {**************************************************************************}
22
23 <form action="{$platal->path}" method="post">
24   <table class="bicol">
25     <tr>
26       <th colspan="2">Contenu du message</th>
27     </tr>
28     {if strlen(trim($texte))}
29     <tr class="pair">
30       <td colspan="2" style="border-bottom: 1px dotted #777">
31         {$texte|smarty:nodefaults|nl2br}
32       </td>
33     </tr>
34     {/if}
35     <tr>
36       <td class="titre">Titre</td>
37       <td>
38         <input type="text" name="titre" size="50" maxlength="200" value="{$titre}" />
39       </td>
40     </tr>
41     <tr>
42       <td class="titre">Texte</td>
43       <td><textarea name="texte" rows="10" cols="60" onfocus="update_texte_count(this.form)">{$texte}</textarea></td>
44     </tr>
45     <tr>
46       <td colspan="2" class="smaller">
47         <script type="text/javascript">
48           var form_propose_texte = false;
49           {literal}
50           function update_texte_count(f) {
51             if (!form_propose_texte && f) form_propose_texte = f;
52             form_propose_texte.texte_count.value=form_propose_texte.texte.value.length;
53             setTimeout("update_texte_count(0)", 100);
54           }
55           {/literal}
56         </script>
57         Essaie de faire un <strong>texte court</strong>, une annonce ne doit pas excéder 800 caractères soit une douzaine de ligne. Tu en es déjà à <input type='text' name='texte_count' size="4"/> caractères.
58       </td>
59     </tr>
60     <tr>
61       <th colspan="2">Informations complémentaires</th>
62     </tr>
63   </table>
64
65   <table class="bicol">
66     <tr class="pair">
67       <td class="titre">Promo min*</td>
68       <td>
69         <input type="text" name="promo_min" size="4" maxlength="4" value="{$promo_min}" /> incluse
70         &nbsp;<em>(0 signifie pas de minimum)</em>
71       </td>
72     </tr>
73     <tr class="pair">
74       <td class="titre">Promo max*</td>
75       <td>
76         <input type="text" name="promo_max" size="4" maxlength="4" value="{$promo_max}" /> incluse
77         &nbsp;<em>(0 signifie pas de maximum)</em>
78       </td>
79     </tr>
80     <tr class="pair">
81       <td colspan="2" class="smaller">
82         * sert à limiter l'affichage de l'annonce aux camarades appartenant à certaines promos seulement.
83       </td>
84     </tr>
85     <tr>
86       <td>
87         <strong>Dernier jour d'affichage</strong>
88       </td>
89       <td>
90         <select name="peremption">
91           {$select|smarty:nodefaults}
92         </select>
93       </td>
94     </tr>
95   </table>
96
97   <div class="center">
98     <input type="hidden" name="evt_id" value="{$smarty.post.evt_id}" />
99     <input type="submit" name="action" value="Proposer" />
100   </div>
101
102 </form>
103
104 {* vim:set et sw=2 sts=2 sws=2: *}