Update to last core:
[platal.git] / templates / lists / annu.tpl
... / ...
CommitLineData
1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2008 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{include file="lists/header_listes.tpl" on=trombi}
25
26<h1>
27 Liste {$platal->argv[1]}
28</h1>
29
30<table class='tinybicol' cellpadding='0' cellspacing='0'>
31 <tr>
32 <td class='titre'>Adresse&nbsp;:</td>
33 <td>{mailto address=$details.addr}</td>
34 </tr>
35 <tr>
36 <td class='titre'>Sujet&nbsp;:</td>
37 <td>{$details.desc}</td>
38 </tr>
39 <tr>
40 <td class='titre'>Visibilité&nbsp;:</td>
41 <td>{if $details.priv eq 0}publique{elseif $details.priv eq 1}privée{else}admin{/if}</td>
42 </tr>
43 <tr>
44 <td class='titre'>Diffusion&nbsp;:</td>
45 <td>{if $details.diff eq 2}modérée{elseif $details.diff}restreinte{else}libre{/if}</td>
46 </tr>
47 <tr>
48 <td class='titre'>Inscription&nbsp;:</td>
49 <td>{if $details.ins}modérée{else}libre{/if}</td>
50 </tr>
51 <tr class="pair">
52 <td class="titre">Ton statut&nbsp;:</td>
53 <td>
54 {if $details.sub>1}
55 Tu es inscrit sur la liste.<br />
56 Te désinscrire&nbsp;:
57 <a href='{$platal->pl_self(1)}?del=1&amp;token={xsrf_token}'>{icon name=cross title="me désinscrire"}</a>
58 {elseif $details.sub eq 1}
59 Ta demande d'inscription est en cours de validation.
60 {else}
61 Tu n'es pas inscrit.<br />
62 Demander ton inscription&nbsp;:
63 <a href="{$platal->pl_self(1)}?add=1&amp;token={xsrf_token}">{icon name=add title="demander mon inscription"}</a>
64 {/if}
65 </td>
66 </tr>
67</table>
68
69{include core=plset.tpl}
70
71<h1>
72 modérateurs de la liste
73</h1>
74
75<table cellpadding="8" cellspacing="2" style="width:100%;">
76 {foreach from=$owners item=xs key=promo}
77 {foreach from=$xs item=x}
78 {if $promo}
79 {cycle values="1,2,3,4" assign="loop"}
80 {if $loop eq "1"}<tr>{/if}
81 <td class='center'>
82 <img src="photo/{$x.l}" width="80" alt=" [ PHOTO ] " />
83 <br />
84 <a href="profile/{$x.l}" class="popup2">
85 {$x.n} ({$promo})
86 </a>
87 </td>
88 {if $loop eq "4"}</tr>{/if}
89 {/if}
90 {/foreach}
91 {/foreach}
92 {if $loop eq "1"}
93 {cycle values="1,2,3" assign="loop"}
94 {cycle values="1,2,3" assign="loop"}
95 {cycle values="1,2,3" assign="loop"}
96 <td></td><td></td><td></td></tr>
97 {elseif $loop eq "2"}
98 {cycle values="1,2,3" assign="loop"}
99 {cycle values="1,2,3" assign="loop"}
100 <td></td><td></td></tr>
101 {elseif $loop eq "3"}
102 {cycle values="1,2,3" assign="loop"}
103 <td></td></tr>
104 {/if}
105</table>
106
107{* vim:set et sw=2 sts=2 sws=2 enc=utf-8: *}