Merge branch 'platal-1.0.0'
[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 <table class="bicol">
28   <tr>
29     <th>
30       Sondages en cours
31     </th>
32   </tr>
33   {iterate item=s from=$survey_current}
34   {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
35   <tr class="{cycle name=cs_cycle values="impair,pair"}">
36     <td class="half">
37       &bull;
38       <a href="survey/vote/{$s.id}">
39         {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
40       </a>
41     </td>
42   </tr>
43     {assign var="has_cs" value="true"}
44   {/if}
45   {/iterate}
46   <tr class="impair">
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}
50     </td>
51   </tr>
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}
63     {if $smarty.session.auth || $s.mode == $SurveyMODE_ALL}
64   <tr class="{cycle name=os_cycle values="impair,pair"}">
65     <td class="half">
66       &bull;
67       <a href="survey/result/{$s.id}">
68         {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
69       </a>
70     </td>
71   </tr>
72       {assign var="has_os" value="true"}
73     {/if}
74   {/iterate}
75   {if !$has_os}
76   <tr>
77     <td class="half">Aucun ancien sondage</td>
78   </tr>
79   {/if}
80 </table>
81
82 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}