Fix the link to update status of non-comers
[platal.git] / templates / xnetevents / admin.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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 <h1>{$asso.nom} : <a href='{$platal->ns}events'>Evénements</a> </h1>
24
25 <p>
26 L'événement {$evt.intitule}
27 {if $evt.titre} - {$evt.titre}
28 {/if}
29 {if $evt.titre || count($moments) eq 0}
30 comptera {$evt.nb_tot} personne{if $evt.nb_tot > 1}s{/if}.
31 {else}
32 ({$evt.nb} personne{if $evt.nb > 1}s{/if} ont réalisé leur inscription).
33 {/if}
34 </p>
35
36 {if $evt.participant_list && $is_admin}
37 <p class="center">
38 [<a href="mailto:?bcc={$evt.short_name}-participants@{#globals.xnet.evts_domain#}">envoyer un mail à ceux qui viennent</a>]
39 -
40 [<a href="mailto:?bcc={$evt.short_name}-absents@{#globals.xnet.evts_domain#}">envoyer un mail aux membres non inscrits</a>]
41 </p>
42 {/if}
43
44 {if count($moments) > 1}
45 <p class="center">
46 [<a href="{$platal->ns}events/admin/{$evt.short_name|default:$evt.eid}"{if !$platal->argv[2]}class="erreur"{/if}>tout</a>]
47 {foreach from=$moments item=m}
48 [<a href="{$platal->ns}events/admin/{$evt.short_name|default:$evt.eid}/{$m.item_id}" {if $platal->argv[2] eq $m.item_id}class="erreur"{/if}>{$m.titre}</a>]
49 {/foreach}
50 </p>
51 {/if}
52
53 <p class="center">
54 [<a href="{$platal->pl_self()}" {if !$smarty.request.initiale}class="erreur"{/if}>tout</a>]
55 {foreach from=$alphabet item=c}
56 [<a href="{$platal->pl_self()}?initiale={$c}"{if $smarty.request.initiale eq $c} class="erreur"{/if}>{$c}</a>]
57 {/foreach}
58 </p>
59
60 {if $is_admin}{literal}
61 <script type="text/javascript">
62 function remplitAuto(mail) {
63   document.getElementById('inscription').mail.value=mail;
64   var f = document.getElementById('montant');
65   if (f)
66       f.mail.value=mail;
67 }
68 </script>
69 {/literal}
70
71 {if $oublis}
72 <p class="erreur">
73 Ils ont payé mais ont oublié de s'inscrire :
74 </p>
75
76 <table summary="payé mais non inscrits" class="tinybicol">
77   <tr>
78     <th>Prénom NOM</th>
79     <th>Promo</th>
80     <th>Infos</th>
81     <th>Montant</th>
82   </tr>
83   {iterate from=$oubliinscription item=m}
84   <tr class="pair">
85     <td>
86       <a href="" {if $is_admin}onclick="return remplitAuto('{$m.email}')"{/if}>
87       {$m.prenom} {$m.nom}
88       </a>
89     </td>
90     <td>{$m.promo}</td>
91     <td>
92       <a href="https://www.polytechnique.org/profile/{$m.email}">{icon name=user_suit title="fiche"}</a>
93       <a href="https://www.polytechnique.org/vcard/{$m.email}.vcf">{icon name=vcard title="vcard"}</a>
94       <a href="mailto:{$m.email}@{#globals.mail.domain#}">{icon name=email title="mail"}</a>
95     </td>
96     <td>{$m.montant}</td>
97   </tr>
98   {/iterate}
99 </table>
100
101 <hr />
102 {/if}
103
104 {/if}
105
106 <table summary="participants a l'evenement" class="{if $tout}large{else}tiny{/if}">
107   <tr>
108     {if $is_admin && $evt.paiement_id && $tout}
109       {assign var=height value='rowspan="2"'}
110     {/if}
111     <th {$height|smarty:nodefaults}>Prénom NOM</th>
112     <th {$height|smarty:nodefaults}>Promo</th>
113     <th {$height|smarty:nodefaults}>Info</th>
114     {if $tout}
115       {if $moments}
116         {foreach from=$moments item=m}
117           <th {$height|smarty:nodefaults}>{$m.titre}</th>
118         {/foreach}
119       {else}
120         <th {$height|smarty:nodefaults}>Nombre</th>
121       {/if}
122       {if $is_admin && $evt.money}
123         <th {$height|smarty:nodefaults}>Montant</th>
124         <th colspan="3">Payé</th>
125       {/if}
126     {else}
127     <th {$height|smarty:nodefaults}>Nombre</th>
128     {/if}
129   </tr>
130   {if $is_admin && $evt.paiement_id && $tout}
131   <tr>
132     <th>Télépaiement</th>
133     <th>Autre</th>
134     <th>Total</th>
135   </tr>
136   {/if}
137   {foreach from=$participants item=m}
138   <tr>
139     <td>
140       {if $is_admin}<a href="javascript:remplitAuto('{$m.email}')">{/if}
141         {if $m.femme}&bull;{/if}{$m.prenom} {$m.nom}
142       {if $is_admin}</a>{/if}
143     </td>
144     <td>{$m.promo}</td>
145     <td>
146       {if $m.x}
147       <a href="https://www.polytechnique.org/profile/{$m.email}">{icon name=user_suit title="fiche"}</a>
148       <a href="https://www.polytechnique.org/vcard/{$m.email}.vcf">{icon name=vcard title="vcard"}</a>
149       <a href="mailto:{$m.email}@{#globals.mail.domain#}">{icon name=email title="mail"}</a>
150       {else}
151       <a href="mailto:{$m.email}">{icon name=email title="mail"}</a>
152       {/if}
153     </td>
154     {if $tout}
155       {if $moments}
156         {foreach from=$moments item=i}
157           <td>{$m[$i.item_id]}</td>
158         {/foreach}
159       {else}
160         <td>{$m[1]}</td>
161       {/if}
162       {if $is_admin && $evt.money}
163         <td {if $m.montant > $m.paid}class="erreur"{/if}>{$m.montant}&euro;</td>
164         {if $evt.paiement_id}
165           <td>{$m.telepayment|default:0}&euro;</td>
166           <td>{$m.adminpaid|default:0}&euro;</td>
167         {/if}
168         <td {if $m.montant < $m.paid}class="erreur"{/if}>{$m.paid}&euro;</td>
169       {/if}
170     {else}
171     <td>
172       {$m.nb}
173     </td>
174     {/if}
175   </tr>
176   {/foreach}
177 </table>
178
179 <p class="descr">
180 {foreach from=$links item=ofs key=txt}
181 <a href="{$platal->pl_self()}?offset={$ofs}&amp;initiale={$smarty.request.initiale}"{if $smarty.request.offset eq $ofs} class="erreur"{/if}>{$txt}</a>
182 {/foreach}
183 </p>
184
185 {if $absents->total()}
186
187 <hr />
188
189 <p>Les personnes suivantes ont indiqué qu'elles ne viendraient pas à l'événement&nbsp;:</p>
190
191 <table class="tinybicol">
192   <tr><th>Prénom NOM</th><th>Origine</th></tr>
193   {iterate from=$absents item=m}
194   <tr>
195     <td>
196       {if $is_admin}<a href="javascript:remplitAuto('{$m.email}')">{/if}
197       {if $m.sexe}&bull;{/if}{$m.prenom} {$m.nom}
198       {if $is_admin}</a>{/if}
199     </td>
200     <td>
201       {$m.promo}
202     </td>
203   </tr>
204   {/iterate}
205 </table>
206
207 {/if}
208
209 {if $is_admin}
210
211 <p class="descr">
212 [<a href="{$platal->ns}events/csv/{$evt.eid}/{$platal->argv[2]}/{$evt.intitule}{if $evt.titre}.{$evt.titre}{/if}.csv">Télécharger le fichier Excel</a>]
213 </p>
214
215 <hr />
216
217 <p class="descr">
218 En tant qu'administrateur, tu peux fixer la venue (accompagnée ou pas) d'un des membres du groupe.
219 Donne ici son mail, ainsi que le nombre de participants.
220 </p>
221
222 <form action="{$platal->pl_self()}" method="post" id="inscription">
223   <p class="descr">
224     <input type="hidden" name="adm" value="nbs" />
225
226     Mail: <input name="mail" size="20" />
227
228     {if $platal->argv[2]}
229     {$evt.titre}: <input name="nb[{$platal->argv[2]}]" size="1" value="1" />
230     {else}
231     {foreach from=$moments item=m}
232     {$m.titre}: <input name="nb[{$m.item_id}]" size="1" value="1"/>
233     {foreachelse}
234     Nombre: <input name="nb[1]" size="1" value="1" />
235     {/foreach}
236     {/if}
237     <input type="submit" />
238   </p>
239 </form>
240
241 {if $evt.money}
242
243 <hr />
244
245 <p class="descr">
246 En tant qu'administrateur, tu peux entrer un paiement reçu par une autre source que le télépaiement
247 du site X.org. Ce montant s'ajoutera aux montants déjà entrés. Si tu as fait une erreur, tu peux
248 entrer un montant négatif.
249 </p>
250
251 <p class="descr">
252 Note que tu peux cliquer sur les noms des membres pour remplir automatiquement la case ci-dessous
253 </p>
254
255 <form action="{$platal->pl_self()}" method="post" id="montant">
256   <p class="descr">
257   <input type="hidden" name="adm" value="prix" />
258   Mail: <input name="mail" size="20" />
259   montant: <input name="montant" size="3" value="0,00" /> &euro;
260   <input type="submit" />
261   </p>
262 </form>
263 {/if}
264
265 {/if}
266
267 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}