Adds possibility for an Xnet animator to give a password to a xnet account.
[platal.git] / templates / xnetgrp / membres-edit.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2010 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 <script type="text/javascript">
24 {literal}
25   function showInformations(box)
26   {
27       var state = (box.value != 'virtual') ? '' : 'none';
28       document.getElementById('prenom').style.display = state;
29       document.getElementById('sexe').style.display = state;
30       document.getElementById('make_X').style.display = state;
31       document.getElementById('password').style.display = state;
32   }
33
34   function showXInput(box)
35   {
36      if (box.checked) {
37        document.getElementById('make_X_cb').style.display = 'none';
38        document.getElementById('make_X_login').style.display = '';
39      }
40   }
41 {/literal}
42 </script>
43
44 <h1>{$asso->nom}&nbsp;: gestion des membres</h1>
45
46 <p>
47 [<a href='{$platal->ns}annuaire'>Retour à l'annuaire</a>]
48 </p>
49
50 <h2>
51   Édition du profil de {profile user=$user groupperms=false sex=false promo=true}
52   <a href="mailto:{$user->bestEmail()}">{icon name=email title="mail"}</a>
53 </h2>
54
55 <form method="post" action="{$platal->ns}member/{$platal->argv[1]}">
56   {xsrf_token_field}
57   <table cellpadding="0" cellspacing="0" class='tinybicol'>
58     <tr class="pair">
59       <td class="titre">
60         Permissions&nbsp;:
61       </td>
62       <td>
63         <select name="group_perms">
64           <option value="membre" {if $user->group_perms eq 'membre'}selected="selected"{/if}>Membre</option>
65           <option value="admin" {if $user->group_perms eq 'admin'}selected="selected"{/if}>Animateur</option>
66         </select>
67       </td>
68     </tr>
69     {if !$user->profile()}
70     <tr class="impair">
71       <td class="titre">
72         Type d'utilisateur&nbsp;:
73       </td>
74       <td>
75         <select name="type" onchange="showInformations(this); return true">
76           <option value="xnet" {if $user->type neq 'virtual'}selected="selected"{/if}>Personne physique</option>
77           <option value="virtual" {if $user->type eq "virtual"}selected="selected"{/if}>Personne morale</option>
78         </select>
79       </td>
80     </tr>
81       <tr id="prenom" class="impair" {if $user->type eq "virtual"}style="display: none"{/if}>
82       <td class="titre">
83         Nom affiché&nbsp;:
84       </td>
85       <td>
86         <input type="text" value="{$user->displayName()}" name="display_name" size="40" />
87       </td>
88     </tr>
89     <tr class="impair">
90       <td class="titre">
91         Nom complet&nbsp;:
92       </td>
93       <td>
94         <input type="text" value="{$user->fullName()}" name="full_name" size="40" />
95       </td>
96     </tr>
97     <tr class="impair">
98       <td class="titre">
99         Nom annuaire&nbsp;:
100       </td>
101       <td>
102         <input type="text" value="{$user->directoryName()}" name="directory_name" size="40" />
103       </td>
104     </tr>
105     <tr id="sexe" class="impair" {if $user->type eq "virtual"}style="display: none"{/if}>
106       <td class="titre">
107         Sexe&nbsp;:
108       </td>
109       <td>
110         <select name="sex">
111           <option value="male"{if !$user->isFemale()} selected="selected"{/if}>Homme</option>
112           <option value="female"{if $user->isFemale()} selected="selected"{/if}>Femme</option>
113         </select>
114       </td>
115     </tr>
116     {/if}
117     {if !$user->profile() || !$user->perms}
118     <tr class="impair">
119       <td class="titre">
120         Email&nbsp;:
121       </td>
122       <td>
123         <input type="text" value="{$user->forlifeEmail()}" name="email" size="40" />
124       </td>
125     </tr>
126     {/if}
127     <tr class="impair">
128       <td class="titre">
129         Commentaire&nbsp;:
130       </td>
131       <td>
132         <input type="text" name="comm" value="{$user->group_comm}" size="40" maxlength="255" /><br />
133         <small>Poste, origine&hellip; (accessible à toutes les personnes autorisées à consulter l'annuaire)</small>
134       </td>
135     </tr>
136     {if $user->type eq 'xnet'}
137     <tr class="impair" id="password">
138       <td class="titre">Mot de passe&nbsp;:</td>
139       <td>
140         <div style="float: left">
141           <input type="text" name="new_plain_password" size="10" maxlength="256" value="********" />
142           <input type="hidden" name="pwhash" value="" />
143         </div>
144         <div style="float: left; margin-top: 5px;">
145           {checkpasswd prompt="new_plain_password" submit="dummy_none"}
146         </div>
147       </td>
148     </tr>
149     <tr id="make_X">
150       <td colspan="2">
151         <span id="make_X_cb">
152           <input type="checkbox" name="is_x" id="is_x" onclick="showXInput(this);" onchange="showXInput(this);" />
153           <label for="is_x">coche cette case s'il s'agit d'un X</label>
154         </span>
155         <span id="make_X_login" style="display: none">
156           <span class="titre">Identifiant (prenom.nom.promo)&nbsp;:</span>
157           <input type="text" name="login_X" value="" />
158         </span>
159       </td>
160     </tr>
161     {/if}
162   </table>
163
164   <h2>Abonnement aux listes</h2>
165
166   <table cellpadding="0" cellspacing="0" class='large'>
167     <tr>
168       <th>&nbsp;</th>
169       <th>Liste</th>
170       <th>Description</th>
171       <th>Nb</th>
172     </tr>
173     {foreach from=$listes item=liste}
174     <tr>
175       <td class='right'>
176         <input type='hidden' name='ml1[{$liste.list}]' value='{$liste.sub}' />
177         <input type='checkbox' name='ml2[{$liste.list}]' {if $liste.sub eq 2}checked="checked"{/if} />
178       </td>
179       <td>
180         <a href='{$platal->ns}lists/members/{$liste.list}'>{$liste.list}</a>
181       </td>
182       <td>{$liste.desc|smarty:nodefaults}</td>
183       <td class='right'>{$liste.nbsub}</td>
184     </tr>
185     {foreachelse}
186     <tr><td colspan='4'>Pas de listes pour ce groupe</td></tr>
187     {/foreach}
188   </table>
189
190   <h2>Abonnement aux alias</h2>
191
192   <table cellpadding="0" cellspacing="0" class='large'>
193     <tr>
194       <th>&nbsp;</th>
195       <th>Alias</th>
196     </tr>
197
198     {foreach from=$alias key=address item=sub}
199     <tr>
200       <td align='right'>
201         <input type='hidden' name='ml3[{$address}]' value='{$sub}' />
202         <input type='checkbox' name='ml4[{$address}]' {if $sub}checked="checked"{/if} />
203       </td>
204       <td>
205         <a href='{$platal->ns}alias/admin/{$address}'>{$address}</a>
206       </td>
207     </tr>
208     {foreachelse}
209     <tr><td colspan='2'>Pas d'alias pour ce groupe</td></tr>
210     {/foreach}
211   </table>
212
213   <div class="center">
214     <br />
215     <input type="submit" name='change' value="Valider ces changements" onclick="return hashResponse('new_plain_password', false, false);" />
216     &nbsp;
217     <input type="reset" value="Annuler ces changements" />
218   </div>
219
220 </form>
221
222
223 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}