del.png -> delete.gif
[platal.git] / templates / xnet / groupe / membres-edit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2006 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>{$asso.nom} : gestion des membres</h1>
24
25 <p>
26 [<a href='{$platal->ns}annuaire'>Retour à l'annuaire</a>]
27 </p>
28
29 <h2>
30   Édition du profil de {$user.prenom} {$user.nom}
31   {if $user.origine eq 'X'}
32   (X{$user.promo})
33   <a href="https://www.polytechnique.org/profile/{$user.alias}">{icon name=user_suit title="fiche"}</a>
34   {/if}
35   <a href="{$platal->ns}member/del/{$user.email}">{icon name=delete title="Suppression du compte"}</a>
36   <a href="mailto:{$user.email}">{icon name=email title="mail"}</a>
37 </h2>
38
39 <form method="post" action="{$platal->ns}member/{$platal->argv[1]}">
40   <table cellpadding="0" cellspacing="0" class='tiny'>
41     <tr>
42       <td class="titre">
43         Permissions:
44       </td>
45       <td>
46         <select name="is_admin">
47           <option value="0" {if !$user.perms}selected="selected"{/if}>Membre</option>
48           <option value="1" {if $user.perms}selected="selected"{/if}>Administrateur</option>
49         </select>
50       </td>
51     </tr>
52     {if $user.origine neq X}
53     <tr>
54       <td class="titre">
55         Prénom:
56       </td>
57       <td>
58         <input type="text" value="{$user.prenom}" name="prenom" size="40" />
59       </td>
60     </tr>
61     <tr>
62       <td class="titre">
63         Nom:
64       </td>
65       <td>
66         <input type="text" value="{$user.nom}" name="nom" size="40" />
67       </td>
68     </tr>
69     <tr>
70       <td class="titre">
71         Email:
72       </td>
73       <td>
74         <input type="text" value="{$user.email}" name="email" size="40" />
75       </td>
76     </tr>
77     {/if}
78   </table>
79
80   <h2>Abonnement aux listes</h2>
81
82   <table cellpadding="0" cellspacing="0" class='large'>
83     <tr>
84       <th>&nbsp;</th>
85       <th>Liste</th>
86       <th>Description</th>
87       <th>Nb</th>
88     </tr>
89     {foreach from=$listes item=liste}
90     <tr>
91       <td class='right'>
92         <input type='hidden' name='ml1[{$liste.list}]' value='{$liste.sub}' />
93         <input type='checkbox' name='ml2[{$liste.list}]' {if $liste.sub eq 2}checked="checked"{/if} />
94       </td>
95       <td>
96         <a href='{$platal->ns}lists/members/{$liste.list}'>{$liste.list}</a>
97       </td>
98       <td>{$liste.desc}</td>
99       <td class='right'>{$liste.nbsub}</td>
100     </tr>
101     {foreachelse}
102     <tr><td colspan='4'>Pas de listes pour ce groupe</td></tr>
103     {/foreach}
104   </table>
105
106   <h2>Abonnement aux alias</h2>
107
108   <table cellpadding="0" cellspacing="0" class='large'>
109     <tr>
110       <th>&nbsp;</th>
111       <th>Alias</th>
112     </tr>
113
114     {foreach from=$alias item=a}
115     <tr>
116       <td align='right'>
117         <input type='hidden' name='ml3[{$a.alias}]' value='{$a.sub}' />
118         <input type='checkbox' name='ml4[{$a.alias}]' {if $a.sub}checked="checked"{/if} />
119       </td>
120       <td>
121         <a href='{$platal->ns}alias/admin/{$a.alias}'>{$a.alias}</a>
122       </td>
123     </tr>
124     {foreachelse}
125     <tr><td colspan='2'>Pas d'alias pour ce groupe</td></tr>
126     {/foreach}
127   </table>
128
129   <div class="center">
130     <br />
131     <input type="submit" name='change' value="Valider ces changements" />
132     &nbsp;
133     <input type="reset" value="Annuler ces changements" />
134   </div>                                                                      
135
136 </form>
137
138
139 {* vim:set et sw=2 sts=2 sws=2: *}