Add a mailto: link in list member lists for external (no profile) users (Closes ...
[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)}
53a6caf4
RB
34 {if t($user.lost)}{assign var=lostUsers value=true}{/if}
35 {profile user=$user.uid promo=$promo}
8da7bf1d 36 {elseif t($user.uid)}
53a6caf4 37 <a href="mailto:{$user.email}">{if t($user.name)}{$user.name}{else}{$user.email}{/if}{if t($promo)} (extérieur){/if}</a>
8da7bf1d 38 {else}
53a6caf4 39 <a href="mailto:{$user.email}">{if t($user.name)}{$user.name}{else}{$user.email}{/if}</a>
8da7bf1d
SJ
40 {/if}
41 </td>
42 {if t($delete)}
43 <td class="center">
44 {if t($user.uid)}
45 <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
46 {else}
47 {icon name=null}&nbsp;
48 {/if}
49 <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
50 </td>
51 {/if}
52</tr>
53{/foreach}
54{/foreach}
55
56{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}