Link to marketing/broken/{forlife} instead of marketing/broken/uid
[platal.git] / templates / survey / index.tpl
CommitLineData
c144f2e5 1{**************************************************************************}
2{* *}
3{* Copyright (C) 2003-2007 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>
0f396347 31 <tr>
32 <td>
33 {if $survey_current->total() eq 0}
34 Aucun sondage en cours
35 {/if}
36 <a style="display: block; float: right;" href="survey/edit/new">{icon name=page_edit} Proposer un sondage</a></td>
37 </tr>
c144f2e5 38 {iterate item=s from=$survey_current}
0f396347 39 {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
c144f2e5 40 <tr class="{cycle values="impair,pair"}">
41 <td class="half">
42 &bull;
3d8decf9 43 <a href="survey/vote/{$s.id}">
44 {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
c144f2e5 45 </a>
46 </td>
47 </tr>
c144f2e5 48 {/if}
0f396347 49 {/iterate}
c144f2e5 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}
0b78af47 61 {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
c144f2e5 62 <tr class="{cycle values="impair,pair"}">
63 <td class="half">
64 &bull;
3d8decf9 65 <a href="survey/result/{$s.id}">
66 {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
c144f2e5 67 </a>
68 </td>
69 </tr>
0b78af47 70 {assign var="has_os" value="true"}
71 {/if}
c144f2e5 72 {/iterate}
73 {if !$has_os}
74 <tr>
75 <td class="half">Aucun ancien sondage</td>
76 </tr>
77 {/if}
78</table>
79
8b0fa81e 80{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}