1 {**************************************************************************}
3 {* Copyright (C) 2003-2006 Polytechnique.org *}
4 {* http://opensource.polytechnique.org/ *}
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. *}
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. *}
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 *}
21 {**************************************************************************}
23 <h1>{$asso.nom} : gestion des membres</h1>
26 Édition du profil de {$user.prenom} {$user.nom}
27 {if $user.origine eq 'X'}
29 <a href="https://www.polytechnique.org/fiche.php?user={$user.alias}"><img src="{rel}/images/loupe.gif" alt="Voir la fiche" /></a>
31 <a href="?del={$user.email}"><img src="{rel}/images/del.png" alt="Suppression du compte" /></a>
32 <a href="mailto:{$user.email}"><img src="{rel}/images/mail.png" alt="Ecrire un mail" /></a>
35 <form method="post" action="{$smarty.server.REQUEST_URI}">
36 <table cellpadding="0" cellspacing="0" class='tiny'>
42 <select name="is_admin">
43 <option value="0" {if !$user.perms}selected="selected"{/if}>Membre</option>
44 <option value="1" {if $user.perms}selected="selected"{/if}>Administrateur</option>
48 {if $user.origine neq X}
54 <input type="text" value="{$user.prenom}" name="prenom" size="40" />
62 <input type="text" value="{$user.nom}" name="nom" size="40" />
70 <input type="text" value="{$user.email}" name="email" size="40" />
76 <h2>Abonnement aux listes</h2>
78 <table cellpadding="0" cellspacing="0" class='large'>
85 {foreach from=$listes item=liste}
88 <input type='hidden' name='ml1[{$liste.list}]' value='{$liste.sub}' />
89 <input type='checkbox' name='ml2[{$liste.list}]' {if $liste.sub eq 2}checked="checked"{/if} />
92 <a href='listes-members.php?liste={$liste.list}'>{$liste.list}</a>
94 <td>{$liste.desc}</td>
95 <td class='right'>{$liste.nbsub}</td>
98 <tr><td colspan='4'>Pas de listes pour ce groupe</td></tr>
102 <h2>Abonnement aux alias</h2>
104 <table cellpadding="0" cellspacing="0" class='large'>
110 {foreach from=$alias item=a}
113 <input type='hidden' name='ml3[{$a.alias}]' value='{$a.sub}' />
114 <input type='checkbox' name='ml4[{$a.alias}]' {if $a.sub}checked="checked"{/if} />
117 <a href='alias-admin.php?liste={$a.alias}'>{$a.alias}</a>
121 <tr><td colspan='2'>Pas d'alias pour ce groupe</td></tr>
127 <input type="submit" name='change' value="Valider ces changements" />
129 <input type="reset" value="Annuler ces changements" />
135 {* vim:set et sw=2 sts=2 sws=2: *}