Corrected the total number in events (Closes #1566)
[platal.git] / templates / lists / display_list.tpl
CommitLineData
8da7bf1d
SJ
1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
8da7bf1d
SJ
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{assign var=lostUsers value=false}
24{foreach from=$list item=users key=sort_key}
25{foreach from=$users item=user name=all}
26<tr>
27 <td class='titre' style="width: 20%">
28 {if $smarty.foreach.all.first}
29 {if $sort_key neq 'AAAAA'}{$sort_key}{else}{$no_sort_key}{/if}
30 {/if}
31 </td>
32 <td>
33 {if t($user.hasProfile)}
34 {if t($user.lost)}{assign var=lostUsers value=true}{/if}
35 {profile user=$user.uid promo=$promo}
36 {elseif t($user.uid)}
37 {if t($user.name)}{$user.name}{else}{$user.email}{/if}{if t($promo)} (extérieur){/if}
38 {elseif t($user.name)}
39 {$user.name}
40 {else}
41 {$user.email}
42 {/if}
43 </td>
44 {if t($delete)}
45 <td class="center">
46 {if t($user.uid)}
47 <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
48 {else}
49 {icon name=null}&nbsp;
50 {/if}
51 <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
52 </td>
53 {/if}
54</tr>
55{/foreach}
56{/foreach}
57
58{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}