Merge commit 'origin/platal-0.10.0'
[platal.git] / templates / survey / index.tpl
CommitLineData
c144f2e5 1{**************************************************************************}
2{* *}
8d84c630 3{* Copyright (C) 2003-2009 Polytechnique.org *}
c144f2e5 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<h1>Sondages</h1>
24
25<table class="bicol">
26 <tr>
27 <th>
28 Sondages en cours
29 </th>
30 </tr>
31 {iterate item=s from=$survey_current}
0f396347 32 {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
84192707 33 <tr class="{cycle name=cs_cycle values="impair,pair"}">
c144f2e5 34 <td class="half">
35 &bull;
3d8decf9 36 <a href="survey/vote/{$s.id}">
37 {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
c144f2e5 38 </a>
39 </td>
40 </tr>
84192707 41 {assign var="has_cs" value="true"}
c144f2e5 42 {/if}
0f396347 43 {/iterate}
84192707 44 <tr class="impair">
45 <td class="half">
46 {if !$has_cs}Aucun sondage en cours{/if}
47 {if $smarty.session.auth}<a style="display: block; float: right;" href="survey/edit/new">{icon name=page_edit} Proposer un sondage</a>{/if}
48 </td>
49 </tr>
c144f2e5 50</table>
51
52<br />
53
54<table class="bicol">
55 <tr>
56 <th>
57 Anciens sondages
58 </th>
59 </tr>
60 {iterate item=s from=$survey_old}
0b78af47 61 {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
84192707 62 <tr class="{cycle name=os_cycle values="impair,pair"}">
c144f2e5 63 <td class="half">
64 &bull;
3d8decf9 65 <a href="survey/result/{$s.id}">
66 {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
c144f2e5 67 </a>
68 </td>
69 </tr>
0b78af47 70 {assign var="has_os" value="true"}
71 {/if}
c144f2e5 72 {/iterate}
73 {if !$has_os}
74 <tr>
75 <td class="half">Aucun ancien sondage</td>
76 </tr>
77 {/if}
78</table>
79
8b0fa81e 80{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}