Can disable email redirection
[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}
49<br/>
50{if $survey_editmode}
51 {assign var="survey_rooteditmode" value=true}
52 {if $survey.valid}
53 {assign var="survey_editmode" value=false}
c144f2e5 54 {/if}
56c6950a 55{/if}
3d8decf9 56{if $survey_rooteditmode}<a href='./survey/edit/question/root'>Modifier la racine</a>{/if}
57{if $survey_editmode} | <a href='./survey/edit/add/0'>Ajouter une question au d&#233;but</a>{/if}
58{if is_array($survey.questions)}
59 {foreach from=$survey.questions item=squestion}
60 {include file='survey/show_question.tpl' squestion=$squestion}
61 {if $survey_editmode}
62 <br/>
63 <a href='./survey/edit/question/{$squestion.id}'>Modifier cette question</a> |
64 <a href='./survey/edit/del/{$squestion.id}'>Supprimer cette question</a> |
65 <a href='./survey/edit/add/{$squestion.id+1}'>Ajouter une question apr&#232;s</a>
66 {/if}
56c6950a 67 <br/>
68 {/foreach}
69{/if}
70{if $survey_rooteditmode}
71<br/>
72<a href='./survey/edit/valid'>{if $survey_updatemode}Enregistrer les modifications{else}Proposer ce sondage{/if}</a> |
73<a href='./survey/edit/cancel'>Annuler {if $survey_updatemode}les modifications{else}totalement la cr&#233;ation de ce sondage{/if}</a>
74{elseif $survey_adminmode}
75<br/>
3d8decf9 76{if !$survey.valid}<a href="./survey/admin/valid/{$survey.id}">Valider ce sondage</a> | {/if}
77<a href="./survey/admin/edit/{$survey.id}">Modifier ce sondage</a> |
78<a href="./survey/admin/del/{$survey.id}">Supprimer ce sondage</a> |
56c6950a 79<a href="./survey/admin">Retour</a>
3d8decf9 80{elseif $survey_votemode}
81<input type='submit' name='survey_submit' value='Voter'/>
82<input type='submit' name='survey_cancel' value='Annuler'/>
83{else}
84<a href="./survey">Retour</a>
c144f2e5 85{/if}
3d8decf9 86</form>
c144f2e5 87
8b0fa81e 88{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}