11105216ea43fb2161c814c364e7c1f3b824e125
[platal.git] / templates / survey / index.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2010 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 <h1>Sondages</h1>
24
25 {* Survey::MODE_ALL equals 0. *}
26 {assign var=SurveyMODE_ALL value=0}
27 {if $survey_current->total() > 0 || $smarty.session.auth}
28 <table class="bicol">
29   <tr>
30     <th colspan="3">
31       Sondages en cours
32     </th>
33   </tr>
34   {iterate item=s from=$survey_current}
35   {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
36   <tr class="{cycle name=cs_cycle values="impair,pair"}">
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]}
48     </td>
49   </tr>
50     {assign var="has_cs" value="true"}
51   {/if}
52   {/iterate}
53   <tr class="impair">
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}
56     </td>
57   </tr>
58 </table>
59 {/if}
60
61 <br />
62
63 <table class="bicol">
64   <tr>
65     <th colspan="3">
66       Anciens sondages
67     </th>
68   </tr>
69   {iterate item=s from=$survey_old}
70     {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
71   <tr class="{cycle name=os_cycle values="impair,pair"}">
72     <td>
73       <a href="survey/result/{$s.id}">
74         {$s.title}
75       </a>
76     </td>
77     <td>
78       {$s.end|date_format:"%x"}
79     </td>
80     <td>
81       {$survey_modes[$s.mode]}
82     </td>
83   </tr>
84       {assign var="has_os" value="true"}
85     {/if}
86   {/iterate}
87   {if !$has_os}
88   <tr>
89     <td class="half">Aucun ancien sondage</td>
90   </tr>
91   {/if}
92 </table>
93
94 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}