Happy New Year!
[platal.git] / templates / include / form.valid.listes.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5e1513f6 3{* Copyright (C) 2003-2011 Polytechnique.org *}
0337d704 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<tr class="pair">
25 <td class="titre">Liste&nbsp;:</td>
59887c4a 26 <td>{$valid->liste}@{$valid->domain}</td>
0337d704 27</tr>
28<tr class="pair">
29 <td class="titre">Desc&nbsp;:</td>
30 <td style="border: 1px dotted inherit">
31 {$valid->desc}
32 </td>
33</tr>
34<tr class="pair">
59887c4a
SJ
35 <td class="titre">Type de liste&nbsp;:</td>
36 <td style="border: 1px dotted inherit">
37 {$valid->asso}
38 </td>
39</tr>
40<tr class="pair">
a7de4ef7 41 <td class="titre">Propriétés&nbsp;:</td>
0337d704 42 <td>
43 <table cellpadding='2' cellspacing='0'>
44 <tr>
59887c4a 45 <td>visibilité&nbsp;:</td>
a7de4ef7 46 <td>{if $valid->advertise}publique{else}privée{/if}</td>
0337d704 47 </tr>
48 <tr>
59887c4a 49 <td>diffusion&nbsp;:</td>
a7de4ef7 50 <td>{if $valid->modlevel eq 2}modérée{elseif $valid->modlevel}restreinte{else}libre{/if}</td>
0337d704 51 </tr>
52 <tr>
59887c4a 53 <td>inscription&nbsp;:</td>
a7de4ef7 54 <td>{if $valid->inslevel}modérée{else}libre{/if}</td>
0337d704 55 </tr>
56 </table>
57 </td>
58</tr>
59<tr class="pair">
60 <td class="titre">Gestionnaires&nbsp;:</td>
61 <td>
62 {foreach from=$valid->owners item=o}
7b2413f6 63 <a href="profile/{$o}" class="popup2">{$o}</a>
0337d704 64 {/foreach}
65 </td>
66</tr>
67<tr class="pair">
68 <td class="titre">Membres&nbsp;:</td>
69 <td>
70 {foreach from=$valid->members item=o}
7b2413f6 71 <a href="profile/{$o}" class="popup2">{$o}</a>
0337d704 72 {/foreach}
73 </td>
74</tr>
75
a7de4ef7 76{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}