Closes #677: Wiki syntax for announces even after validation, and wiki
[platal.git] / templates / include / form.valid.listes.tpl
CommitLineData
0337d704 1{**************************************************************************}
2{* *}
5ddeb07c 3{* Copyright (C) 2003-2007 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>
26 <td>{$valid->liste}@polytechnique.org</td>
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">
a7de4ef7 35 <td class="titre">Propriétés&nbsp;:</td>
0337d704 36 <td>
37 <table cellpadding='2' cellspacing='0'>
38 <tr>
a7de4ef7 39 <td>visibilité:</td>
40 <td>{if $valid->advertise}publique{else}privée{/if}</td>
0337d704 41 </tr>
42 <tr>
43 <td>diffusion:</td>
a7de4ef7 44 <td>{if $valid->modlevel eq 2}modérée{elseif $valid->modlevel}restreinte{else}libre{/if}</td>
0337d704 45 </tr>
46 <tr>
47 <td>inscription:</td>
a7de4ef7 48 <td>{if $valid->inslevel}modérée{else}libre{/if}</td>
0337d704 49 </tr>
50 </table>
51 </td>
52</tr>
53<tr class="pair">
54 <td class="titre">Gestionnaires&nbsp;:</td>
55 <td>
56 {foreach from=$valid->owners item=o}
7b2413f6 57 <a href="profile/{$o}" class="popup2">{$o}</a>
0337d704 58 {/foreach}
59 </td>
60</tr>
61<tr class="pair">
62 <td class="titre">Membres&nbsp;:</td>
63 <td>
64 {foreach from=$valid->members item=o}
7b2413f6 65 <a href="profile/{$o}" class="popup2">{$o}</a>
0337d704 66 {/foreach}
67 </td>
68</tr>
69
a7de4ef7 70{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}