New smarty plugin {javascript} to load js-files on demand
[platal.git] / templates / emails / alias.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
24{if $success}
25 <p>
a7de4ef7 26 La demande de création des alias <strong>{$success}@{#globals.mail.alias_dom#}</strong> et
27 <strong>{$success}@{#globals.mail.alias_dom2#}</strong> a bien été enregistrée. Après
28 vérification, tu recevras un mail te signalant l'ouverture de ces adresses.
0337d704 29 </p>
30 <p>
31 Encore merci de nous faire confiance pour tes e-mails !
32 </p>
33{else}
34 <h1>
a7de4ef7 35 Adresses e-mail personnalisées
0337d704 36 </h1>
37
38{if $actuel}
5721c9a3 39 {javascript name=ajax}
0337d704 40 <table class="flags">
41 <tr>
42 <td class="orange">
b7582015 43 <input type="checkbox" {if $mail_public}checked="checked"{/if}
44 onclick="
45 Ajax.update_html(null,'{$globals->baseurl}/emails/alias/set/'+(this.checked?'public':'private'));
a7de4ef7 46 document.getElementById('mail_public').innerHTML = (this.checked?'public et apparaît donc sur ta fiche':'privé et n\'apparaît nulle part sur le site') + '.';
b7582015 47 " />
0337d704 48 </td>
49 <td>
50 Ton alias est actuellement : <strong>{$actuel}</strong>. Il est pour l'instant
a7de4ef7 51 <span id="mail_public">{if $mail_public}public et apparaît donc sur ta fiche.{else}privé et n'apparaît nulle part sur le site.{/if}</span>
0337d704 52 </td>
53 </tr>
54 </table>
0337d704 55
56{else}
57 <p>
a7de4ef7 58 Pour plus de <strong>convivialité</strong> dans l'utilisation de tes mails, tu peux choisir une adresse
59 e-mail discrète et personnalisée. Ce nouvel e-mail peut par exemple correspondre à ton surnom.
0337d704 60 </p>
61{/if}
62
63 <p>
a7de4ef7 64 Pour de plus amples informations sur ce service, nous t'invitons à consulter
65 <a href="Xorg/AliasMelix">cette documentation</a> qui répondra
66 sans doute à toutes tes questions
0337d704 67 </p>
68
69 {if $actuel}
70 <p>
a7de4ef7 71 <strong>Note : tu as déjà l'alias {$actuel}, or tu ne peux avoir qu'un seul alias à la fois.
72 Si tu effectues une nouvelle demande l'ancien alias sera effacé.</strong>
0337d704 73 </p>
74 {/if}
75
76 {if $demande}
77 <p>
a7de4ef7 78 <strong>Note : tu as déjà effectué une demande pour {$demande->alias}, dont le traitement est
0337d704 79 en cours. Si tu souhaites modifier ceci refais une demande, sinon ce n'est pas la peine.</strong>
80 </p>
81 {/if}
82
83 <br />
7b2413f6 84 <form action="emails/alias/ask" method="post">
0337d704 85 <table class="bicol" cellpadding="4" summary="Demande d'alias">
86 <tr>
87 <th>Demande d'alias</th>
88 </tr>
89 <tr>
a7de4ef7 90 <td>Alias demandé :</td>
0337d704 91 </tr>
92 <tr>
93 <td><input type="text" name="alias" value="{$r_alias}" />@{#globals.mail.alias_dom#} et @{#globals.mail.alias_dom2#}</td>
94 </tr>
95 <tr>
96 <td>
97 <table class="flags" summary="Flags" cellpadding="0" cellspacing="0">
98 <tr>
99 <td class="orange">
100 <input type="checkbox" name="public" {if $mail_public}checked="checked"{/if}/>
101 </td>
102 <td class="texte">
a7de4ef7 103 adresse publique (apparaît sur ta fiche).
0337d704 104 </td>
105 </tr>
106 </table>
107 </td>
108 </tr>
109 <tr>
a7de4ef7 110 <td>Brève explication :</td>
0337d704 111 </tr>
112 <tr>
113 <td><textarea rows="5" cols="50" name="raison">{$r_raison}</textarea></td>
114 </tr>
115 <tr>
116 <td><input type="submit" name="submit" value="Envoyer" /></td>
117 </tr>
118 </table>
119 </form>
120 {if $actuel}
7b2413f6 121 <form action="emails/alias/delete/{$actuel}" method="post"
a7de4ef7 122 onsubmit="return confirm('Es-tu sûr de vouloir supprimer {$actuel} ?')">
0337d704 123 <table class="bicol" cellpadding="4" summary="Suppression d'alias">
124 <tr>
125 <th>Suppression d'alias</th>
126 </tr>
127 <tr>
128 <td class="center">
0337d704 129 <input type="submit" value="Supprimer l'alias {$actuel}" />
130 </td>
131 </tr>
132 </table>
133 </form>
134 {/if}
135{/if}
136
a7de4ef7 137{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}