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