Use the new get_profile/get_user smarty modifiers in plviews to be able to handle...
[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=obj}
36     {assign var=user value=$obj|get_user}
37     <tr>
38       <td class="titre" style="width: 20%">
39         {if $order eq 'promo'}
40           {assign var=user_key value=$user->promo()}
41         {elseif $order eq 'name'}
42           {assign var=user_key value=$user->lastName()|string_format:'%.1s'|upper}
43         {else}
44           {assign var=user_key value=''}
45         {/if}
46         {if $user_key neq $current_key}
47           {assign var=current_key value=$user_key}
48           {$user_key}
49         {/if}
50       </td>
51       <td>
52         {if $user->hasProfile()}
53           {if $user->lost}{assign var=lostUsers value=true}{/if}
54           {profile user=$user}
55         {else}
56           {$user->displayName()}
57         {/if}
58       </td>
59       {if t($delete)}
60         <td class="center">
61           {if t($user.uid)}
62             <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
63           {else}
64             {icon name=null}&nbsp;
65           {/if}
66           <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
67         </td>
68       {/if}
69     </tr>
70   {/foreach}
71 </table>
72
73 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}