2006 => 2007 Happy New Year\!
[platal.git] / templates / xnetevents / subscribe.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} : Evénement {$event.intitule}</h1>
24
25 <p>
26   [<a href="{$platal->ns}events">Revenir à la liste des événements</a>]
27 </p>
28
29 <p class='descr'>
30   Cet événement a lieu 
31   <strong>
32   {if $event.fin and $event.fin neq $event.debut}
33     {if $event.debut_day eq $event.fin_day}
34       le {$event.debut|date_format:"%d %B %Y"} de {$event.debut|date_format:"%H:%M"} à {$event.fin|date_format:"%H:%M"}
35     {else}
36       du {$event.debut|date_format:"%d %B %Y à %H:%M"}<br />
37       au {$event.fin|date_format:"%d %B %Y à %H:%M"}
38     {/if}
39   {else}
40     le {$event.debut|date_format:"%d %B %Y à %H:%M"}
41   {/if}
42   </strong>
43   et a été proposé par
44   <a href='https://www.polytechnique.org/profile/{$event.alias}' class='popup2'>
45     {$event.prenom} {$event.nom} ({$event.promo})
46   </a>
47 </p>
48
49 <p class='descr'>
50   {$event.descriptif|nl2br}
51 </p>
52
53 {if $admin || $event.show_participants}
54 <p class='descr'>
55   Tu peux 
56   <a href="{$platal->ns}events/admin/{$event.eid}">
57     consulter la liste des participants
58     {icon name=group title="Liste des participants"}</a>
59   déjà inscrits.
60 </p>
61 {/if}
62
63 <form action="{$platal->ns}events/sub/{$event.eid}" method="post">
64   <table class="tiny" cellspacing="0" cellpadding="0">
65     {foreach from=$event.moments item=m}
66     <tr><th>{$m.titre} ({$m.montant} &euro;)</th></tr>
67     {if $m.details}
68     <tr>
69       <td>
70       {$m.details|nl2br}
71       </td>
72     </tr>
73     {/if}
74     <tr>
75       <td>
76         {if $event.inscr_open}
77           <input type="radio" name="moment[{$m.item_id}]" value="0"
78           {if !$m.nb}checked="checked"{/if}/>non
79           {if $event.noinvite}
80               <input type="radio" name="moment[{$m.item_id}]" value="1"
81               {if $m.nb eq 1}checked="checked"{/if}/>oui
82           {else}
83               <input type="radio" name="moment[{$m.item_id}]" value="1"
84               {if $m.nb eq 1}checked="checked"{/if}/>seul<br />
85               <input type="radio" name="moment[{$m.item_id}]" value="2"
86               {if $m.nb > 1}checked="checked"{/if}/>avec
87                 <input size="2" name="personnes[{$m.item_id}]"
88                   value="{if $m.nb > 1}{math equation='x - 1' x=$m.nb}{else}1{/if}"/> personnes
89           {/if}
90         {else}
91           {if !$m.nb}
92             Je ne viendrai pas.
93           {elseif $m.nb eq 1}
94             Je viendrai{if !$event.noinvite} seul{/if}.
95           {else}
96             Je viendrai avec {$m.nb} personne{if $m.nb > 2}s{/if}
97           {/if}
98         {/if}
99       </td>
100     </tr>
101     {/foreach}
102
103     <tr><th>À payer</th></tr>
104     <tr>
105       <td>
106         {if $event.topay}
107         <span class="error">
108           {if !$event.paid}
109           Tu dois payer {$event.topay|replace:'.':','}&nbsp;&euro;.
110           {elseif $event.paid < $event.topay}
111           Tu dois encore payer {math equation="a-b" a=$event.topay b=$event.paid|replace:'.':','}&nbsp;&euro;
112           (tu as déjà payé {$event.paid|replace:'.':','}&nbsp;&euro;)
113           {else} 
114           Tu as déjà payé {$event.paid|replace:'.':','}&nbsp;&euro; pour ton inscription.
115           {/if} 
116           {if $event.paiement_id &&  $event.paid < $event.topay}
117           [<a href="{$platal->ns}payment/{$event.paiement_id}?montant={math equation="a-b" a=$event.topay b=$event.paid}">
118           Payer en ligne</a>]
119           {/if}
120         </span>
121         {else}
122         Rien à payer
123         {if $event.paid > 0}
124         (tu as déjà payé {$event.paid|replace:'.':','}&nbsp;&euro;)
125         {/if}.
126         {/if}
127       </td>
128     </tr>
129   </table>
130
131   <p style="text-align:center">
132     <input type="submit" name='submit' value="Valider mes inscriptions" />
133   </p>
134 </form>
135
136 {* vim:set et sw=2 sts=2 sws=2: *}