A few typos.
[platal.git] / templates / xnetevents / edit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2008 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 <script type='text/javascript'>
24 {literal}
25 function deadlineChange(box)
26 {
27     var dd = document.getElementById('do_deadline');
28
29     if (box.value == 1) {
30         dd.style.display = 'inline';
31     } else {
32         dd.style.display = 'none';
33     }
34 }
35 {/literal}
36 </script>
37
38 <h1>{$asso.nom}&nbsp;: {$evt.intitule|default:"Nouvel événement"}</h1>
39
40 <p class="descr">
41   Un événement peut être une réunion, un séminaire, une conférence, un voyage promo,
42   etc... Pour en organiser un et bénéficier des outils de suivi d'inscription et de
43   paiement offerts, il te faut remplir les quelques champs du formulaire ci-dessous.
44 </p>
45 <p class="descr">
46   Tu as la possibilité, pour un événement donné, de distinguer plusieurs "moments"
47   distincts. Par exemple, dans le cas d'une réunion suivie d'un dîner, il peut être
48   utile de comptabiliser les présents à la réunion d'une part et de compter ceux
49   qui s'inscrivent au repas d'autre part (en général certains participants à la réunion
50   ne restent pas pour le dîner...), de sorte que tu sauras combien de chaises prévoir
51   pour le premier "moment" (la réunion) et pour combien de personnes réserver le
52   restaurant.
53 </p>
54
55 <hr />
56 <h2>Description de l'événement</h2>
57
58 {if $evt.eid}
59 <p class='erreur'>
60   <strong>Attention :</strong> si tu souhaites modifier la structure d'un événement alors
61   que des personnes y sont déjà inscrites, contacte préalablement
62   <a href='mailto:contact@polytechnique.org'>l'équipe de Polytechnique.org</a>.
63 </p>
64 {/if}
65
66 <form method="post" action="{$platal->ns}events/edit/{$url_ref}">
67   {xsrf_token_field}
68   <table class='bicol' cellspacing='0' cellpadding='0'>
69     <colgroup>
70       <col width='25%' />
71     </colgroup>
72     <tr>
73       <th colspan="2">
74         Intitulé de l'événement
75       </th>
76     </tr>
77     <tr>
78       <td class='titre'>
79         Nom complet&nbsp;:
80       </td>
81       <td>
82         <input type="text" name="intitule" value="{$evt.intitule}" size="45" maxlength="100" />
83       </td>
84     </tr>
85     <tr>
86       <td class='titre'>
87         Nom raccourci&nbsp;:<br />
88         <small>(pour les listes de diffusion)</small>
89       </td>
90       <td>
91         <input type="text" name="short_name" size="20" maxlength="20"
92           value="{$evt.short_name}" />
93         <small>(n'utiliser que chiffres, lettres, tiret et point. garder court)</small>
94       </td>
95     </tr>
96     <tr>
97       <td class='titre'>
98         Descriptif&nbsp;:
99       </td>
100       <td>
101         <textarea name="descriptif" cols="45" rows="10">{$evt.descriptif}</textarea>
102       </td>
103     </tr>
104     <tr>
105       <th colspan="2">
106         Inscriptions
107       </th>
108     </tr>
109     <tr>
110       <td class='titre'>
111         Fin des inscriptions&nbsp;:
112       </td>
113       <td>
114         <select name="deadline" onchange='deadlineChange(this)'>
115           <option value='0' {if !$evt.deadline_inscription}selected='selected'{/if}>Jamais</option>
116           <option value='1' {if $evt.deadline_inscription}selected='selected'{/if}>Le...</option>
117         </select>
118         <span  id='do_deadline' {if !$evt.deadline_inscription}style='display: none'{/if}>
119           {html_select_date prefix='inscr_' end_year='+5' day_value_format='%02d'
120             field_order='DMY' field_separator=' / ' month_format='%m' time=$evt.deadline_inscription}
121           compris.
122         </span>
123       </td>
124     </tr>
125     <tr>
126       <td class='titre'>
127         Options&nbsp;:
128       </td>
129       <td>
130         Montrer la liste des inscrits aux membres&nbsp;:
131         <input type="radio" name="show_participants" value="1" {if $evt.show_participants}checked="checked"{/if} /> oui
132         <input type="radio" name="show_participants" value="0" {if !$evt.show_participants}checked="checked"{/if}/> non
133
134         <br />
135         Autoriser les non-membres&nbsp;:
136         <input type="radio" name="accept_nonmembre" value="1" {if $evt.accept_nonmembre}checked="checked"{/if} /> oui
137         <input type="radio" name="accept_nonmembre" value="0" {if !$evt.accept_nonmembre}checked="checked"{/if}/> non
138
139         <br />
140         Autoriser les invités&nbsp;:
141         <input type="radio" name="noinvite" value="0" {if !$evt.noinvite}checked="checked"{/if} /> oui
142         <input type="radio" name="noinvite" value="1" {if $evt.noinvite}checked="checked"{/if}/> non
143       </td>
144     </tr>
145     <tr>
146       <th colspan="2">
147         Paiement&nbsp;:&nbsp;
148         <select name="paiement_id" id="payid"  onchange="document.getElementById('new_pay').style.display=(value &lt; 0?'':'none')">
149           {if $evt.paiement_id eq -2}
150           <option value='-2'>Paiement en attente de validation</option>
151           {/if}
152           <option value=''>Pas de paiement</option>
153           <option value='-1' {if $paiement_message}selected="selected"{/if}>- Nouveau paiement -</option>
154           {html_options options=$paiements selected=$evt.paiement_id}
155         </select>
156       </th>
157     </tr>
158     <tr id="new_pay" style="display:none">
159       <td colspan="2">
160         Il faut que tu définisses le texte de l'email de confirmation de paiement. Pour ceci, tu peux adapter le modèle qui suit&nbsp;:
161         <ul>
162           <li><strong>Remplace les crochets</strong> ([...]) par le texte que tu désires y voir apparaître</li>
163           <li>&lt;salutation&gt;, &lt;prenom&gt;, &lt;nom&gt; et &lt;montant&gt; seront <strong>automatiquement</strong> remplacés par les informations adaptées</li>
164           <li><a href="wiki_help" class="popup3">{icon name=information} tu peux utiliser une syntaxe wiki pour formatter ton texte</a></li>
165         </ul>
166         {javascript name=ajax}
167         <div id="pay_preview" style="display: none">
168           <strong>Aperçu du texte&nbsp;:</strong>
169           <hr />
170           <div id="preview"></div>
171           <hr />
172         </div>
173         <textarea name="confirmation" id="payment_text" rows="12" cols="65">{if $paiement_message}{$paiement_message}{else}&lt;salutation&gt; &lt;prenom&gt; &lt;nom&gt;,
174
175 Ton inscription à [METS LE NOM DE L'EVENEMENT ICI] a bien été enregistrée et ton paiement de &lt;montant&gt; a bien été reçu.
176
177 [COMPLETE EN PRECISANT LA DATE ET LA PERSONNE A CONTACTER]
178
179 À très bientôt,
180
181 -- 
182 {$smarty.session.prenom} {$smarty.session.nom}{/if}</textarea><br />
183         Page internet de l'événement&nbsp;: <input size="40" name="site" value="{$paiement_site|default:$asso.site|default:$globals->baseurl|cat:'/'|cat:$platal->ns}" /><br />
184         Le nouveau paiement sera activé automatiquement après validation par le trésorier de Polytechnique.org,
185         ce qui sera fait sous peu.
186         <script type="text/javascript">//<![CDATA[
187           document.getElementById('new_pay').style.display=
188             (document.getElementById('payid').value < 0?'':'none');
189         //]]></script><br />
190         <input type="submit" name="preview" value="Aperçu" onclick="previewWiki('payment_text', 'preview', true, 'pay_preview'); return false;" />
191       </td>
192     </tr>
193   </table>
194
195   <hr />
196   <h2>Déroulement de l'événement</h2>
197
198   <table class="bicol">
199     <colgroup>
200       <col width='25%' />
201     </colgroup>
202     <tr>
203       <td class='titre'>
204         Début&nbsp;:
205       </td>
206       <td>
207         le {html_select_date prefix='deb_' end_year='+5' day_value_format='%02d'
208               field_order='DMY' field_separator=' / ' month_format='%m' time=$evt.debut}
209         à {html_select_time use_24_hours=true display_seconds=false
210               time=$evt.debut prefix='deb_' minute_interval=5}
211       </td>
212     </tr>
213     <tr>
214       <td class='titre'>
215         Fin&nbsp;:
216       </td>
217       <td>
218         le {html_select_date prefix='fin_' end_year='+5' day_value_format='%02d'
219               field_order='DMY' field_separator=' / ' month_format='%m' time=$evt.fin}
220         à {html_select_time use_24_hours=true display_seconds=false
221               time=$evt.fin prefix='fin_' minute_interval=5}
222       </td>
223     </tr>
224
225   {foreach from=$moments item=i}
226   {assign var='moment' value=$items[$i]}
227     <tr>
228       <th colspan="2">Moment {$i}</th>
229     </tr>
230     <tr>
231       <td class="titre">Intitulé&nbsp;:</td>
232       <td><input type="text" name="titre{$i}" value="{$moment.titre}" size="45" maxlength="100" /></td>
233     </tr>
234     <tr>
235       <td class="titre">Détails pratiques&nbsp;:</td>
236       <td><textarea name="details{$i}" rows="6" cols="45">{$moment.details}</textarea></td>
237     </tr>
238     <tr>
239       <td class="titre">Tarif&nbsp;:<br /><small>(par participant)</small></td>
240       <td><input type="text" name="montant{$i}" value="{if $moment.montant}{$moment.montant|replace:".":","}{else}0,00{/if}" size="7" maxlength="7" /> &#8364; <small>(0 si gratuit)</small></td>
241     </tr>
242   {/foreach}
243   </table>
244  
245   <div class="center">
246     {if $evt.eid}<input type="hidden" name="organisateur_uid" value="{$evt.organisateur_uid}" />{/if}
247     <input type="submit" name="valid" value="Valider" />
248     &nbsp;
249     <input type="reset" value="Annuler" />
250   </div>
251
252 </form>
253 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}