Restore minifiche view for lists on X.org.
[platal.git] / templates / include / plview.listmember.tpl
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 <table summary="abonnés à la liste" class="bicol" cellpadding="0" cellspacing="0">
25   {if $details.own || hasPerms('admin,groupadmin')}
26   <tr><td colspan="2">
27   <a href="{$platal->ns}lists/csv/{$platal->argv[1]}/{$platal->argv[1]}.csv">
28     {icon name="page_excel" title="Télécharger la liste des membres"}
29     Télécharger la liste des membres au format Excel
30   </a>
31   </td></tr>
32   {/if}
33
34   {assign var=current_key value=''}
35   {foreach from=$set item=user}
36   <tr>
37     <td class="titre" style="width: 20%">
38       {if $order eq 'promo'}
39         {assign var=user_key value=$user->promo()}
40       {elseif $order eq 'name'}
41         {assign var=user_key value=$user->lastName()|string_format:'%.1s'|upper}
42       {else}
43         {assign var=user_key value=''}
44       {/if}
45       {if $user_key neq $current_key}
46         {assign var=current_key value=$user_key}
47         {$user_key}
48       {/if}
49     </td>
50     <td>
51       {if $user->hasProfile()}
52         {if $user->lost}{assign var=lostUsers value=true}{/if}
53         {profile user=$user}
54       {else}
55         {$user->displayName()}
56       {/if}
57     </td>
58     {if t($delete)}
59       <td class="center">
60         {if t($user.uid)}
61           <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
62         {else}
63           {icon name=null}&nbsp;
64         {/if}
65         <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
66       </td>
67     {/if}
68   </tr>
69   {/foreach}
70 </table>
71
72 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}