Moving to GitHub.
[platal.git] / templates / survey / index.tpl
CommitLineData
c144f2e5 1{**************************************************************************}
2{* *}
c441aabe 3{* Copyright (C) 2003-2014 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
905ab104
FB
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">
c144f2e5 29 <tr>
905ab104 30 <th colspan="3">
c144f2e5 31 Sondages en cours
32 </th>
33 </tr>
905ab104
FB
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>
dd36cc0d 43 <td>
905ab104 44 {$s.end|date_format:"%x"}
dd36cc0d 45 </td>
905ab104
FB
46 <td>
47 {$survey_modes[$s.mode]}
22264cd4 48 </td>
c144f2e5 49 </tr>
905ab104
FB
50 {assign var="has_cs" value="true"}
51 {/if}
c144f2e5 52 {/iterate}
a88f005d 53 {if hasPerm('user')}
905ab104
FB
54 <tr class="impair">
55 <td colspan="3" style="text-align: right">
56 {if $smarty.session.auth}<a href="survey/edit/new">{icon name=page_edit} Proposer un sondage</a>{/if}
57 </td>
58 </tr>
a88f005d 59 {/if}
c144f2e5 60</table>
2f4b93be 61{/if}
905ab104 62
3ddf2584 63<br />
905ab104
FB
64
65<table class="bicol">
66 <tr>
67 <th colspan="3">
68 Anciens sondages
69 </th>
70 </tr>
71 {iterate item=s from=$survey_old}
72 {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
73 <tr class="{cycle name=os_cycle values="impair,pair"}">
74 <td>
75 <a href="survey/result/{$s.id}">
76 {$s.title}
77 </a>
78 </td>
79 <td>
80 {$s.end|date_format:"%x"}
81 </td>
82 <td>
83 {$survey_modes[$s.mode]}
84 </td>
85 </tr>
86 {assign var="has_os" value="true"}
87 {/if}
88 {/iterate}
89 {if !$has_os}
90 <tr>
91 <td class="half">Aucun ancien sondage</td>
92 </tr>
93 {/if}
94</table>
22264cd4 95
448c8cdc 96{* vim:set et sw=2 sts=2 ts=8 fenc=utf-8: *}