migrate referent + profile edition
[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="{rel}/{$platal->path}" method="post">
24   <table class="bicol">
25     <tr>
26       <th colspan="2">Contenu du message</th>
27     </tr>
28     <tr>
29       <td><strong>Titre</strong></td>
30       <td>
31         <input type="text" name="titre" size="50" maxlength="200" value="{$titre}" />
32       </td>
33     </tr>
34     <tr>
35       <td><strong>Texte</strong></td>
36       <td><textarea name="texte" rows="10" cols="60" onfocus="update_texte_count(this.form)">{$texte}</textarea></td>
37     </tr>
38     <tr>
39       <td colspan="2">
40         <script type="text/javascript">
41           var form_propose_texte = false;
42           {literal}
43           function update_texte_count(f) {
44             if (!form_propose_texte && f) form_propose_texte = f;
45             form_propose_texte.texte_count.value=form_propose_texte.texte.value.length;
46             setTimeout("update_texte_count(0)", 100);
47           }
48           {/literal}
49         </script>
50         Essaie de faire un texte court, 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.</td>
51     </tr>
52   </table>
53
54   <table class="bicol">
55     <tr>
56       <th colspan="2">Informations complémentaires</th>
57     </tr>
58     <tr>
59       <td>
60         <strong>Promo min *</strong> (incluse)
61       </td>
62       <td>
63         <input type="text" name="promo_min" size="4" maxlength="4" value="{$promo_min}" />
64         &nbsp;<em>0 signifie pas de minimum</em>
65       </td>
66     </tr>
67     <tr>
68       <td>
69         <strong>Promo max *</strong> (incluse)
70       </td>
71       <td>
72         <input type="text" name="promo_max" size="4" maxlength="4" value="{$promo_max}" />
73         &nbsp;<em>0 signifie pas de maximum</em>
74       </td>
75     </tr>
76     <tr>
77       <td colspan="2">
78         * sert à limiter l'affichage de l'annonce aux camarades appartenant à certaines promos seulement.
79       </td>
80     </tr>
81     <tr>
82       <td>
83         <strong>Dernier jour d'affichage</strong>
84       </td>
85       <td>
86         <select name="peremption">
87           {$select|smarty:nodefaults}
88         </select>
89       </td>
90     </tr>
91   </table>
92
93   <div class="center">
94     <input type="hidden" name="evt_id" value="{$smarty.post.evt_id}" />
95     <input type="submit" name="action" value="Proposer" />
96   </div>
97
98 </form>
99
100 {* vim:set et sw=2 sts=2 sws=2: *}