Revert new survey on master.
[platal.git] / templates / survey / show_root.tpl
diff --git a/templates/survey/show_root.tpl b/templates/survey/show_root.tpl
new file mode 100644 (file)
index 0000000..ca606fd
--- /dev/null
@@ -0,0 +1,117 @@
+{**************************************************************************}
+{*                                                                        *}
+{*  Copyright (C) 2003-2010 Polytechnique.org                             *}
+{*  http://opensource.polytechnique.org/                                  *}
+{*                                                                        *}
+{*  This program is free software; you can redistribute it and/or modify  *}
+{*  it under the terms of the GNU General Public License as published by  *}
+{*  the Free Software Foundation; either version 2 of the License, or     *}
+{*  (at your option) any later version.                                   *}
+{*                                                                        *}
+{*  This program is distributed in the hope that it will be useful,       *}
+{*  but WITHOUT ANY WARRANTY; without even the implied warranty of        *}
+{*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *}
+{*  GNU General Public License for more details.                          *}
+{*                                                                        *}
+{*  You should have received a copy of the GNU General Public License     *}
+{*  along with this program; if not, write to the Free Software           *}
+{*  Foundation, Inc.,                                                     *}
+{*  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA               *}
+{*                                                                        *}
+{**************************************************************************}
+
+<h1>Sondage&nbsp;: {$survey.title}</h1>
+<form action="survey/vote{if $survey_votemode}/{$survey.id}{/if}" method='post'>
+<table style="width: 100%">
+  <tr>
+    <td>
+    <table class="bicol">
+      <tr class="pair">
+        <td colspan="2">{$survey.description|miniwiki|smarty:nodefaults}</td>
+      </tr>
+      <tr>
+        <td class="titre">Fin du sondage&nbsp;:</td>
+        <td>{$survey.end|date_format:"%x"}</td>
+      </tr>
+      <tr>
+        <td class="titre">Type de sondage&nbsp;:</td>
+        <td>{$survey_modes[$survey.mode]}</td>
+      </tr>
+      {if $survey.mode != Survey::MODE_ALL}
+      <tr>
+        <td class="titre">Promotions&nbsp;:</td>
+        <td>
+          {if $survey.promos eq "#"}
+          <span class="erreur">erreur</span>
+          {elseif $survey.promos eq ""}
+          aucune restriction
+          {else}
+          {$survey.promos}
+          {/if}
+        </td>
+      </tr>
+      {/if}
+      {if $survey_warning}
+      <tr class="pair">
+        <td colspan="2">{$survey_warning}</td>
+      </tr>
+      {/if}
+    </table>
+    {if $survey_resultmode}
+    <p class="smaller">{$survey.votes} personnes ont répondu à ce sondage.<br />
+      Récupérer <a href="survey/result/{$survey.id}/csv">l'ensemble des résultats</a> au format csv
+    </p>
+    {/if}
+    </td>
+    {if $survey_editmode && !$survey.valid}
+      {assign var="survey_editallmode" value=true}
+    {/if}
+    {if $survey_editmode}
+    <td style="width: 30%">
+      <a href='survey/edit/question/root'>{icon name=page_edit alt="Modifier" title="Modifier la description"}</a>
+      {if $survey_editallmode}<br /><a href='survey/edit/add/0'>{icon name=add title="Ajouter une question au début" alt="Ajouter"}</a>{/if}
+    </td>
+    {/if}
+  </tr>
+  {if is_array($survey.questions)}
+  {foreach from=$survey.questions item=squestion}
+  <tr>
+    <td>
+      {include file='survey/show_question.tpl' squestion=$squestion}
+    </td>
+    {if $survey_editallmode}
+    <td class="smaller" style="width: 30%; vertical-align: middle">
+      <a href='survey/edit/question/{$squestion.id}'>{icon name=page_edit title="Modifier cette question" alt="Modifier"}</a><br />
+      <a href='survey/edit/del/{$squestion.id}'>{icon name=delete title="Supprimer cette question" alt="Supprimer"}</a><br />
+      <a href='survey/edit/add/{$squestion.id+1}'>{icon name=add title="Ajouter une question après" alt="Ajouter"}</a>
+    </td>
+    {/if}
+  </tr>
+  {/foreach}
+  {/if}
+</table>
+<p class="center">
+  {if $smarty.session.survey_validate || ($survey_editmode && !$survey_updatemode)}
+  <a href='survey/edit/valid'>
+    {icon name=tick}
+    Proposer ce sondage
+  </a> |
+  <a href='survey/edit/cancel'>
+    {icon name=cross}
+    Annuler totalement la création de ce sondage
+  </a>
+  {elseif $survey_adminmode}
+  {if !$survey.valid}<a href="survey/admin/valid/{$survey.id}">Valider ce sondage</a> | {/if}
+  <a href="survey/admin/edit/{$survey.id}">{icon name=tick} Modifier ce sondage</a> |
+  <a href="survey/admin/del/{$survey.id}">{icon name=cross} Supprimer ce sondage</a> |
+  <a href="survey/admin">Retour</a>
+  {elseif $survey_votemode}
+  <input type='submit' name='survey_submit' value='Voter'/>
+  <input type='submit' name='survey_cancel' value='Annuler'/>
+  {else}
+  <a href="survey">Retour</a>
+  {/if}
+</p>
+</form>
+
+{* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}