Fixes vim mode line.
[platal.git] / templates / include / plview.listmember.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2014 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     {include file="include/csv.tpl" url="`$platal->ns`lists/csv/`$platal->argv[1]`/`$platal->argv[1]`.csv"}
28   </td></tr>
29   {/if}
30
31   {assign var=current_key value=''}
32   {foreach from=$set item=obj}
33     {assign var=user value=$obj|get_user}
34     <tr>
35       <td class="titre" style="width: 20%">
36         {if $order eq 'promo'}
37           {assign var=user_key value=$user->promo()}
38         {elseif $order eq 'name'}
39           {assign var=user_key value=$user->lastName()|string_format:'%.1s'|upper}
40         {else}
41           {assign var=user_key value=''}
42         {/if}
43         {if $user_key neq $current_key}
44           {assign var=current_key value=$user_key}
45           {$user_key}
46         {/if}
47       </td>
48       <td>
49         {if $user->hasProfile()}
50           {if $user->lost}{assign var=lostUsers value=true}{/if}
51           {profile user=$user}
52         {else}
53           {$user->displayName()}
54         {/if}
55       </td>
56       {if t($delete)}
57         <td class="center">
58           {if t($user.uid)}
59             <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
60           {else}
61             {icon name=null}&nbsp;
62           {/if}
63           <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
64         </td>
65       {/if}
66     </tr>
67   {/foreach}
68 </table>
69
70 {* vim:set et sw=2 sts=2 sws=2 fenc=utf-8: *}