force 'base href=...../~x......' once for good.
[platal.git] / templates / admin / homonymes.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
50a40a33 3{* Copyright (C) 2003-2006 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
1f7c3690 23<h1>Gestion des homonymes</h1>
0337d704 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>
e8599c21 61 <a href="{rel}/profile/{$user.forlife}" class='popup2'>fiche</a>
1f7c3690 62 <a href="{rel}/admin/utilisateurs.php?login={$user.forlife}">edit</a>
0337d704 63 {if $user.type eq 'alias'}
1f7c3690 64 <a href="{$smarty.server.PHP_SELF}?op=mail-conf&amp;target={$user.user_id}">mailer</a>
65 <a href="{$smarty.server.PHP_SELF}?op=correct-conf&amp;target={$user.user_id}">corriger</a>
0337d704 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="{$smarty.server.PHP_SELF}">
76 <table class="bicol">
77 <tr>
78 <th>Envoyer un mail pour prévenir l'utilisateur</th>
79 </tr>
80 <tr>
81 <td>
82 <textarea cols="80" rows="20" name="mailbody">
83{$prenom},
84
85
86Comme nous t'en avons informé par mail il y a quelques temps,
87pour respecter nos engagements en terme d'adresses e-mail devinables,
88tu te verras bientôt retirer l'alias {$loginbis}@polytechnique.org pour
89ne garder que {$forlife}@polytechnique.org.
90
91Toute personne qui écrira à {$loginbis}@polytechnique.org recevra la
92réponse d'un robot qui l'informera que {$loginbis}@polytechnique.org
93est ambigu pour des raisons d'homonymie et signalera ton email exact.
94
95L'équipe Polytechnique.org
7da8ef90 96{#globals.baseurl#}
0337d704 97 </textarea>
98 </td>
99 </tr>
100 <tr>
101 <td>
102 <input type="hidden" name="target" value="{$target}" />
103 <input type="hidden" name="op" value="mail" />
104 <input type="submit" value="Envoyer" />
105 </td>
106 </tr>
107 </table>
108</form>
109
110{elseif $op eq 'correct-conf'}
111
112<form method="post" action="{$smarty.server.PHP_SELF}">
113 <table class="bicol">
114 <tr>
115 <th>Mettre en place le robot {$loginbis}@polytechnique.org</th>
116 </tr>
117 <tr>
118 <td>
119 <textarea cols="80" rows="20" name="mailbody">
120{$prenom},
7da8ef90 121
0337d704 122Comme nous t'en avons informé par mail il y a quelques temps,
123nous t'avons retiré de façon définitive l'adresse
124{$loginbis}@polytechnique.org.
125
126Toute personne qui écrit à {$loginbis}@polytechnique.org reçoit la
127réponse d'un robot qui l'informe que {$loginbis}@polytechnique.org
128est ambigu pour des raisons d'homonymie et signale ton email exact
129
130Tu peux faire l'essai toi-même en écrivant à {$loginbis}@polytechnique.org.
131
132L'équipe Polytechnique.org
7da8ef90 133{#globals.baseurl#}
0337d704 134 </textarea>
135 </td>
136 </tr>
137 <tr>
138 <td>
139 <input type="hidden" name="target" value="{$target}" />
140 <input type="hidden" name="op" value="correct" />
141 <input type="submit" value="Envoyer et corriger" />
142 </td>
143 </tr>
144 </table>
145</form>
146
147{/if}
148
149
150{* vim:set et sw=2 sts=2 sws=2: *}