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