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