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