first view of the results of a survey
[platal.git] / templates / survey / show_root.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{**************************************************************************}
56c6950a 22
3d8decf9 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}
56c6950a 27{/if}
c144f2e5 28<br/>Fin du sondage :
56c6950a 29{if $survey.end eq "#"}
30 erreur
31{else}
32 {$survey.end|date_format:"%x"}
33{/if}
3d8decf9 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}
56c6950a 48{/if}
9f01f40b 49{if $survey_resultmode}
50 <br/>{$survey.votes} personnes ont r&#233;pondu &#224; ce sondage.
51{/if}
56c6950a 52<br/>
53{if $survey_editmode}
54 {assign var="survey_rooteditmode" value=true}
55 {if $survey.valid}
56 {assign var="survey_editmode" value=false}
c144f2e5 57 {/if}
56c6950a 58{/if}
3d8decf9 59{if $survey_rooteditmode}<a href='./survey/edit/question/root'>Modifier la racine</a>{/if}
60{if $survey_editmode} | <a href='./survey/edit/add/0'>Ajouter une question au d&#233;but</a>{/if}
61{if is_array($survey.questions)}
62 {foreach from=$survey.questions item=squestion}
63 {include file='survey/show_question.tpl' squestion=$squestion}
64 {if $survey_editmode}
65 <br/>
66 <a href='./survey/edit/question/{$squestion.id}'>Modifier cette question</a> |
67 <a href='./survey/edit/del/{$squestion.id}'>Supprimer cette question</a> |
68 <a href='./survey/edit/add/{$squestion.id+1}'>Ajouter une question apr&#232;s</a>
69 {/if}
56c6950a 70 <br/>
71 {/foreach}
72{/if}
73{if $survey_rooteditmode}
74<br/>
75<a href='./survey/edit/valid'>{if $survey_updatemode}Enregistrer les modifications{else}Proposer ce sondage{/if}</a> |
76<a href='./survey/edit/cancel'>Annuler {if $survey_updatemode}les modifications{else}totalement la cr&#233;ation de ce sondage{/if}</a>
77{elseif $survey_adminmode}
78<br/>
3d8decf9 79{if !$survey.valid}<a href="./survey/admin/valid/{$survey.id}">Valider ce sondage</a> | {/if}
80<a href="./survey/admin/edit/{$survey.id}">Modifier ce sondage</a> |
81<a href="./survey/admin/del/{$survey.id}">Supprimer ce sondage</a> |
56c6950a 82<a href="./survey/admin">Retour</a>
3d8decf9 83{elseif $survey_votemode}
84<input type='submit' name='survey_submit' value='Voter'/>
85<input type='submit' name='survey_cancel' value='Annuler'/>
86{else}
87<a href="./survey">Retour</a>
c144f2e5 88{/if}
3d8decf9 89</form>
c144f2e5 90
8b0fa81e 91{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}