fix
[platal.git] / templates / xnet / groupe / annuaire.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} : Annuaire du groupe </h1>
24
25 <p class="descr">
26 Le groupe {$asso.nom} compte {$nb_tot} membres.
27 </p>
28
29 <p class="descr">
30 Les membres extérieurs du groupe sont intégrés à cette liste, et repérés par l'inscription 'extérieur' dans la colonne promotion.
31 </p>
32
33 {if $admin}
34 <p class="descr">
35 Fonctionnalités visibles uniquement par les administrateurs :
36 </p>
37 <ul class="descr">
38   <li><a href="{$platal->ns}member/new">Ajouter un membre</a></li>
39   <li><a href="{$platal->ns}admin/annuaire">Synchroniser annuaire et Listes de diffusion</a></li>
40 </ul>
41 {/if}
42
43 <p class="center">
44 [<a href="{$smarty.server.PHP_SELF}" {if !$request_group}class="erreur"{/if}>tout</a>]
45 {foreach from=$alphabet item=c}
46 [<a href="{$platal->ns}annuaire?{$group}={$c}&amp;order={$smarty.request.order}"{if $request_group eq $c} class="erreur"{/if}>{$c}</a>]
47 {/foreach}
48 </p>
49
50 <table summary="membres du groupe" class="{if $admin}large{else}tiny{/if}">
51   <tr>
52     <th><a href="{$platal->ns}annuaire?order=alpha{if $smarty.request.order neq "alpha_inv"}_inv{/if}{if $request_group and $group eq 'initiale'}&amp;initiale={$request_group}{/if}">Prénom NOM</a></th>
53     <th><a href="{$platal->ns}annuaire?order=promo{if $smarty.request.order eq "promo"}_inv{/if}{if $request_group and $group eq 'promo'}&amp;promo={$request_group}{/if}">Promo</a></th>
54     <th>Infos</th>
55     {if $admin}
56     <th>Actions</th>
57     {/if}
58   </tr>
59   {iterate from=$ann item=m}
60   <tr {if $m.admin}style="background:#d0c198;"{/if}>
61     <td>{if $m.femme}&bull;{/if}{$m.prenom} {$m.nom|strtoupper}</td>
62     <td>{$m.promo}</td>
63     <td>
64       {if $m.x}
65       <a href="https://www.polytechnique.org/profile/{$m.email}">{icon name=user_suit title="fiche"}</a>
66       <a href="https://www.polytechnique.org/vcard/{$m.email}.vcf">{icon name=vcard title="[vcard]"}</a>
67       <a href="mailto:{$m.email}@polytechnique.org">{icon name=email title="mail"}</a>
68       {else}
69       <a href="mailto:{$m.email}">{icon name=email title="mail"}</a>
70       {/if}
71     </td>
72     {if $admin}
73     <td>
74       <a href="{$platal->ns}member/{if $m.x}{$m.email}{else}{$m.uid}{/if}"><img src="images/profil.png" alt="Edition du profil" /></a>
75       <a href="{$platal->ns}member/del/{if $m.x}{$m.email}{else}{$m.uid}{/if}">{icon name=delete title="Supprimer de l'annuaire"}</a>
76     </td>
77     {/if}
78   </tr>
79   {/iterate}
80 </table>
81
82 <p class="descr">
83 {foreach from=$links item=ofs key=txt}
84 <a href="{$platal->ns}annuaire?offset={$ofs}&amp;initiale={$smarty.request.initiale}"{if $smarty.request.offset eq $ofs} class="erreur"{/if}>{$txt}</a>
85 {/foreach}
86 </p>
87
88 {* vim:set et sw=2 sts=2 sws=2: *}