Convert source code to UTF-8
[platal.git] / templates / include / form.valid.listes.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2007 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}@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">
35   <td class="titre">Propriétés&nbsp;:</td>
36   <td>
37     <table cellpadding='2' cellspacing='0'>
38       <tr>
39         <td>visibilité:</td>
40         <td>{if $valid->advertise}publique{else}privée{/if}</td>
41       </tr>
42       <tr>
43         <td>diffusion:</td>
44         <td>{if $valid->modlevel eq 2}modérée{elseif $valid->modlevel}restreinte{else}libre{/if}</td>
45       </tr>
46       <tr>
47         <td>inscription:</td>
48         <td>{if $valid->inslevel}modérée{else}libre{/if}</td>
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}
57     <a href="profile/{$o}" class="popup2">{$o}</a>
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}
65     <a href="profile/{$o}" class="popup2">{$o}</a>
66     {/foreach}
67   </td>
68 </tr>
69
70 {* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}