Convert source code to UTF-8
[platal.git] / templates / carnet / notifs.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5ddeb07c 3{* Copyright (C) 2003-2007 Polytechnique.org *}
0337d704 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
b48a0758 24<h1>Notifications automatiques</h1>
0337d704 25
a7de4ef7 26<p>Les mails sont hebdomadaires (pour éviter une trop grosse charge du serveur de mails et de ta boite mail).
27S'il n'y a rien à te signaler le mail ne t'est pas envoyé.</p>
0337d704 28
7b2413f6 29<form action="carnet/notifs" method="post">
0337d704 30 <fieldset>
31 <legend>Mail</legend>
32 <input type='checkbox' name='mail' onclick="this.form.submit();" {if $watch->watch_mail}checked="checked"{/if} />
a7de4ef7 33 Recevoir un mail hebdomadaire des événements que je n'ai pas déjà vus sur le site<br />
0337d704 34 <input type='hidden' name='flags_mail' value='valider' />
35 </fieldset>
36</form>
37
7b2413f6 38<form action="carnet/notifs" method="post">
0337d704 39 <fieldset>
a7de4ef7 40 <legend>Événements à surveiller</legend>
0337d704 41 {foreach from=$watch->cats() item=s key=i}
42 <input type='checkbox' name='sub[{$i}]' {if $watch->subs($i)}checked="checked"{/if} />
43 {$s.short} {if $s.type eq near}<sup>o</sup>{elseif $s.type eq often}<sup>*</sup>{/if}<br />
44 {/foreach}
a7de4ef7 45 <span class='smaller'><sup>*</sup>: ne concerne pas les promos (événements très fréquents)</span><br />
0337d704 46 <span class='smaller'><sup>o</sup>: ne concerne que les promos entre {$smarty.session.promo-1} et {$promo_sortie-2} que tu surveilles</span>
47 </fieldset>
48 <div class='center'>
49 <input type='submit' name='subs' value='valider' />
50 </div>
51</form>
52
53<h1 id='middle'>Qui/Que surveiller ?</h1>
54
55<h2>Surveiller ses contacts</h2>
56
7b2413f6 57<form action="carnet/notifs#middle" method="post">
0337d704 58 <fieldset>
59 <legend>Contacts</legend>
60 <input type='checkbox' name='contacts' onclick="this.form.submit();" {if $watch->watch_contacts}checked="checked"{/if} /> Surveiller mes contacts<br />
61 <input type='hidden' name='flags_contacts' value='valider' />
62 </fieldset>
63</form>
64
65<br />
66
67<h2>Surveiller des promos</h2>
68
69<p>
a7de4ef7 70Attention : pour les promos, tu n'es pas notifié des événements trop fréquents (par exemple les changements de fiche).
0337d704 71</p>
72
7b2413f6 73<form action="carnet/notifs/" method="post">
0337d704 74 <fieldset>
75 <legend>Ajouter une promo</legend>
76 Tu peux surveiller des promos (mettre la promo sur 4 chiffres),
77 ou des plages de promos (par ex. 1990-1992) : <br />
78 <input type='text' name='promo' />
b48a0758 79 <input type='submit' name='add_promo' value='ajouter'
80 onclick="this.form.action += 'add_promo/' + this.form.promo.value;" />
81 <input type='submit' name='del_promo' value='retirer'
82 onclick="this.form.action += 'del_promo/' + this.form.promo.value;" />
0337d704 83 <br />
84 {if $watch->promos()|@count eq 0}
85 <p>Tu ne surveilles actuellement aucune promo.</p>
86 {else}
87 <p>Tu surveilles les promos suivantes :</p>
88 <ul>
89 {foreach from=$watch->promos() item=p}
a7de4ef7 90 <li>{if $p.0 eq $p.1}{$p.0}{else}{$p.0} à {$p.1}{/if}</li>
0337d704 91 {/foreach}
92 </ul>
93 {/if}
94 </fieldset>
95</form>
96
97<h2>Surveiller des non inscrits</h2>
98
99<p>
a7de4ef7 100Si un non-inscrit que tu surveilles s'inscrit, il sera automatiquement ajouté à tes contacts.
0337d704 101</p>
102
103<p>
7b2413f6 104Pour surveiller des membres non-inscrits, il faut passer par la <a href="search" class='popup'>recherche</a>
a7de4ef7 105et cliquer sur les icones {icon name=add} pour les ajouter à cette liste
0337d704 106</p>
107
d2f6cf40 108<fieldset>
109 <legend>Non-inscrits</legend>
110 {if $watch->nonins()|@count eq 0}
111 Tu ne surveilles actuellement aucun non-inscrit.
112 {elseif $watch->nonins()|@count}
113 Tu surveilles {if $watch->nonins()|@count eq 1}le non-inscrit{else}les non-inscrits{/if} :
114 <ul>
115 {foreach from=$watch->nonins() item=p}
116 <li>
117 {$p.prenom} {$p.nom} ({$p.promo}) <a href="carnet/notifs/del_nonins/{$p.user_id}">{icon name='cross' title='retirer'}/<>
118 </li>
119 {/foreach}
120 </ul>
121 {/if}
122</fieldset>
0337d704 123
a7de4ef7 124{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}