Merge commit 'origin/master' into fusionax
[platal.git] / templates / survey / index.tpl
1 {**************************************************************************}
2 {*                                                                        *}
3 {*  Copyright (C) 2003-2009 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 <table class="bicol">
26   <tr>
27     <th>
28       Sondages en cours
29     </th>
30   </tr>
31   {iterate item=s from=$survey_current}
32   {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
33   <tr class="{cycle name=cs_cycle values="impair,pair"}">
34     <td class="half">
35       &bull;
36       <a href="survey/vote/{$s.id}">
37         {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
38       </a>
39     </td>
40   </tr>
41     {assign var="has_cs" value="true"}
42   {/if}
43   {/iterate}
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>
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}
61     {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
62   <tr class="{cycle name=os_cycle values="impair,pair"}">
63     <td class="half">
64       &bull;
65       <a href="survey/result/{$s.id}">
66         {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
67       </a>
68     </td>
69   </tr>
70       {assign var="has_os" value="true"}
71     {/if}
72   {/iterate}
73   {if !$has_os}
74   <tr>
75     <td class="half">Aucun ancien sondage</td>
76   </tr>
77   {/if}
78 </table>
79
80 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}