Only uses autoload to require validation classes.
[platal.git] / templates / include / form.valid.listes.tpl
... / ...
CommitLineData
1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2010 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<tr class="pair">
25 <td class="titre">Liste&nbsp;:</td>
26 <td>{$valid->liste}@{$valid->domain}</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">
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">
41 <td class="titre">Propriétés&nbsp;:</td>
42 <td>
43 <table cellpadding='2' cellspacing='0'>
44 <tr>
45 <td>visibilité&nbsp;:</td>
46 <td>{if $valid->advertise}publique{else}privée{/if}</td>
47 </tr>
48 <tr>
49 <td>diffusion&nbsp;:</td>
50 <td>{if $valid->modlevel eq 2}modérée{elseif $valid->modlevel}restreinte{else}libre{/if}</td>
51 </tr>
52 <tr>
53 <td>inscription&nbsp;:</td>
54 <td>{if $valid->inslevel}modérée{else}libre{/if}</td>
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}
63 <a href="profile/{$o}" class="popup2">{$o}</a>
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}
71 <a href="profile/{$o}" class="popup2">{$o}</a>
72 {/foreach}
73 </td>
74</tr>
75
76{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}