Happy New Year!
[platal.git] / templates / survey / index.tpl
CommitLineData
c144f2e5 1{**************************************************************************}
2{* *}
12262f13 3{* Copyright (C) 2003-2011 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}
dd36cc0d 27{if $survey_current->total() > 0 || $smarty.session.auth}
c144f2e5 28<table class="bicol">
29 <tr>
dd36cc0d 30 <th colspan="3">
c144f2e5 31 Sondages en cours
32 </th>
33 </tr>
34 {iterate item=s from=$survey_current}
51fb3b6f 35 {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
84192707 36 <tr class="{cycle name=cs_cycle values="impair,pair"}">
dd36cc0d
FB
37 <td class="half" style="clear: both">
38 <a href="survey/vote/{$s.id}">{$s.title}</a>
39 {if $s.uid eq $smarty.session.user->id() || hasPerm('admin')}
40 (<a href="survey/result/{$s.id}">résultats partiels</a>)
41 {/if}
42 </td>
43 <td>
44 {$s.end|date_format:"%x"}
45 </td>
46 <td>
47 {$survey_modes[$s.mode]}
c144f2e5 48 </td>
49 </tr>
84192707 50 {assign var="has_cs" value="true"}
c144f2e5 51 {/if}
0f396347 52 {/iterate}
02125f19 53 <tr class="impair">
dd36cc0d
FB
54 <td colspan="3" style="text-align: right">
55 {if $smarty.session.auth}<a href="survey/edit/new">{icon name=page_edit} Proposer un sondage</a>{/if}
02125f19
SJ
56 </td>
57 </tr>
c144f2e5 58</table>
dd36cc0d 59{/if}
c144f2e5 60
61<br />
62
63<table class="bicol">
64 <tr>
dd36cc0d 65 <th colspan="3">
c144f2e5 66 Anciens sondages
67 </th>
68 </tr>
69 {iterate item=s from=$survey_old}
51fb3b6f 70 {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
84192707 71 <tr class="{cycle name=os_cycle values="impair,pair"}">
dd36cc0d 72 <td>
3d8decf9 73 <a href="survey/result/{$s.id}">
dd36cc0d 74 {$s.title}
c144f2e5 75 </a>
76 </td>
dd36cc0d
FB
77 <td>
78 {$s.end|date_format:"%x"}
79 </td>
80 <td>
81 {$survey_modes[$s.mode]}
82 </td>
c144f2e5 83 </tr>
0b78af47 84 {assign var="has_os" value="true"}
85 {/if}
c144f2e5 86 {/iterate}
87 {if !$has_os}
88 <tr>
89 <td class="half">Aucun ancien sondage</td>
90 </tr>
91 {/if}
92</table>
93
8b0fa81e 94{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}