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