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