generate a csv file for the results of a survey
[platal.git] / templates / survey / show_root.tpl
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>Sondage : {$survey.title}</h1>
24 <form action="./survey/vote{if $survey_votemode}/{$survey.id}{/if}" method='post'>
25 {if $survey.description != ''}
26   {$survey.description}
27 {/if}
28 <br/>Fin du sondage :
29 {if $survey.end eq "#"}
30   erreur
31 {else}
32   {$survey.end|date_format:"%x"}
33 {/if}
34 <br/>Type de sondage :
35 {$survey_modes[$survey.mode]}
36 {if $survey.mode != Survey::MODE_ALL}
37   <br/>R&#233;serv&#233; aux promotions :
38   {if $survey.promos eq "#"}
39     erreur
40   {elseif $survey.promos eq ""}
41     aucune restriction
42   {else}
43     {$survey.promos}
44   {/if}
45 {/if}
46 {if $survey_warning neq ''}
47   <br/>{$survey_warning}
48 {/if}
49 {if $survey_resultmode}
50   <br/>{$survey.votes} personnes ont r&#233;pondu &#224; ce sondage.
51   <br/>R&#233;cup&#233;rer <a href="./survey/result/{$survey.id}/csv">l'ensemble des r&#233;sultats</a> au format csv
52 {/if}
53 <br/>
54 {if $survey_editmode}
55   {assign var="survey_rooteditmode" value=true}
56   {if $survey.valid}
57     {assign var="survey_editmode" value=false}
58   {/if}
59 {/if}
60 {if $survey_rooteditmode}<a href='./survey/edit/question/root'>Modifier la racine</a>{/if}
61 {if $survey_editmode} | <a href='./survey/edit/add/0'>Ajouter une question au d&#233;but</a>{/if}
62 {if is_array($survey.questions)}
63   {foreach from=$survey.questions item=squestion}
64     {include file='survey/show_question.tpl' squestion=$squestion}
65     {if $survey_editmode}
66       <br/>
67       <a href='./survey/edit/question/{$squestion.id}'>Modifier cette question</a> |
68       <a href='./survey/edit/del/{$squestion.id}'>Supprimer cette question</a> |
69       <a href='./survey/edit/add/{$squestion.id+1}'>Ajouter une question apr&#232;s</a>
70     {/if}
71     <br/>
72   {/foreach}
73 {/if}
74 {if $survey_rooteditmode}
75 <br/>
76 <a href='./survey/edit/valid'>{if $survey_updatemode}Enregistrer les modifications{else}Proposer ce sondage{/if}</a> |
77 <a href='./survey/edit/cancel'>Annuler {if $survey_updatemode}les modifications{else}totalement la cr&#233;ation de ce sondage{/if}</a>
78 {elseif $survey_adminmode}
79 <br/>
80 {if !$survey.valid}<a href="./survey/admin/valid/{$survey.id}">Valider ce sondage</a> | {/if}
81 <a href="./survey/admin/edit/{$survey.id}">Modifier ce sondage</a> |
82 <a href="./survey/admin/del/{$survey.id}">Supprimer ce sondage</a> |
83 <a href="./survey/admin">Retour</a>
84 {elseif $survey_votemode}
85 <input type='submit' name='survey_submit' value='Voter'/>
86 <input type='submit' name='survey_cancel' value='Annuler'/>
87 {else}
88 <a href="./survey">Retour</a>
89 {/if}
90 </form>
91
92 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}