Happy New Year!
[platal.git] / templates / admin / homonymes.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2011 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>Gestion des homonymes</h1>
24
25 {if $op eq 'list' || $op eq 'mail' || $op eq 'correct'}
26
27 <p>
28   Les utilisateurs signalés en rouge sont ceux qui conservent actuellement
29   l'alias prenom.nom et empêchent donc la mise en place du robot détrompeur.
30 </p>
31
32 <table class="bicol">
33   <tr>
34     <th>alias concerné</th>
35     <th>date de péremption de l'alias</th>
36     <th>op</th>
37   </tr>
38   {foreach from=$hnymes key=login item=row}
39   <tr class="pair">
40     <td colspan="3">
41       <strong>{$login}</strong>
42     </td>
43   </tr>
44   {foreach from=$row item=user}
45   <tr class="impair">
46     <td>&nbsp;&nbsp;
47       {if $user.type eq 'alias'}
48       <span class="erreur"><strong>{$user.forlife}</strong></span>
49       {else}
50       {$user.forlife}
51       {/if}
52     </td>
53     <td>{$user.expire|date_format}</td>
54     <td>
55       <a href="profile/{$user.forlife}" class='popup2'>fiche</a>
56       <a href="admin/user/{$user.forlife}">edit</a>
57       {if $user.type eq 'alias'}
58       <a href="admin/homonyms/mail-conf/{$user.uid}">envoyer un email</a>
59       <a href="admin/homonyms/correct-conf/{$user.uid}">corriger</a>
60       {/if}
61     </td>
62   </tr>
63   {/foreach}
64   {/foreach}
65 </table>
66
67 {elseif $op eq 'mail-conf'}
68
69 <form method="post" action="admin/homonyms/mail/{$target}">
70   {xsrf_token_field}
71   <table class="bicol">
72     <tr>
73       <th>Envoyer un email pour prévenir l'utilisateur</th>
74     </tr>
75     <tr>
76       <td>
77         <textarea cols="80" rows="20" name="mailbody">
78 {$user->displayName()},
79
80
81 Comme nous t'en avons informé par email il y a quelques temps,
82 pour respecter nos engagements en terme d'adresses email devinables,
83 tu te verras bientôt retirer l'alias {$loginbis}@{#globals.mail.domain#} pour
84 ne garder que {$user->forlifeEmail()}.
85
86 Toute personne qui écrira à {$loginbis}@{#globals.mail.domain#} recevra la
87 réponse d'un robot qui l'informera que {$loginbis}@{#globals.mail.domain#}
88 est ambigu pour des raisons d'homonymie et signalera ton email exact.
89
90 L'équipe Polytechnique.org
91 {#globals.baseurl#}
92         </textarea>
93       </td>
94     </tr>
95     <tr>
96       <td>
97         <input type="submit" value="Envoyer" />
98       </td>
99     </tr>
100   </table>
101 </form>
102
103 {elseif $op eq 'correct-conf'}
104
105 <form method="post" action="admin/homonyms/correct/{$target}">
106   {xsrf_token_field}
107   <table class="bicol">
108     <tr>
109       <th>Mettre en place le robot {$loginbis}@{#globals.mail.domain#}</th>
110     </tr>
111     <tr>
112       <td>
113         <textarea cols="80" rows="20" name="mailbody">
114 {$user->displayName()},
115
116 Comme nous t'en avons informé par email il y a quelques temps,
117 nous t'avons retiré de façon définitive l'adresse
118 {$loginbis}@{#globals.mail.domain#}.
119
120 Toute personne qui écrit à {$loginbis}@{#globals.mail.domain#} reçoit la
121 réponse d'un robot qui l'informe que {$loginbis}@{#globals.mail.domain#}
122 est ambigu pour des raisons d'homonymie et indique ton email exact.
123
124 Tu peux faire l'essai toi-même en écrivant à {$loginbis}@{#globals.mail.domain#}.
125
126 L'équipe Polytechnique.org
127 {#globals.baseurl#}
128         </textarea>
129       </td>
130     </tr>
131     <tr>
132       <td>
133         <input type="submit" value="Envoyer et corriger" />
134       </td>
135     </tr>
136   </table>
137 </form>
138
139 {/if}
140
141
142 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}