Adds precision about excel files opening.
[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   <small>(encodage&nbsp;: iso-8859-1, séparateur&nbsp;: point-virgule)</small>
32   </td></tr>
33   {/if}
34
35   {assign var=current_key value=''}
36   {foreach from=$set item=obj}
37     {assign var=user value=$obj|get_user}
38     <tr>
39       <td class="titre" style="width: 20%">
40         {if $order eq 'promo'}
41           {assign var=user_key value=$user->promo()}
42         {elseif $order eq 'name'}
43           {assign var=user_key value=$user->lastName()|string_format:'%.1s'|upper}
44         {else}
45           {assign var=user_key value=''}
46         {/if}
47         {if $user_key neq $current_key}
48           {assign var=current_key value=$user_key}
49           {$user_key}
50         {/if}
51       </td>
52       <td>
53         {if $user->hasProfile()}
54           {if $user->lost}{assign var=lostUsers value=true}{/if}
55           {profile user=$user}
56         {else}
57           {$user->displayName()}
58         {/if}
59       </td>
60       {if t($delete)}
61         <td class="center">
62           {if t($user.uid)}
63             <a href="{$platal->ns}member/{$user.uid}">{icon name=user_edit title='Éditer'}</a>&nbsp;
64           {else}
65             {icon name=null}&nbsp;
66           {/if}
67           <a href='{$platal->pl_self(1)}?{$delete}={$user.email}&amp;token={xsrf_token}'>{icon name=cross title='Retirer'}</a>
68         </td>
69       {/if}
70     </tr>
71   {/foreach}
72 </table>
73
74 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}