fix makefile to make it fail if wget fails.
[platal.git] / templates / survey / index.tpl
index 2d4890f..ec96dc9 100644 (file)
     </th>
   </tr>
   {iterate item=s from=$survey_current}
-  <tr class="{cycle values="impair,pair"}">
+  {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
+  <tr class="{cycle name=cs_cycle values="impair,pair"}">
     <td class="half">
       &bull;
-      <a href="survey/show/{$s.survey_id}">
-        {$s.title} ({$s.end|date_format:"%x"})
+      <a href="survey/vote/{$s.id}">
+        {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
       </a>
     </td>
   </tr>
-  {assign var="has_cs" value="true"}
-  {/iterate}
-  {if !$has_cs}
-  <tr>
-    <td class="half">Aucun sondage en cours</td>
-  </tr>
+    {assign var="has_cs" value="true"}
   {/if}
+  {/iterate}
+  <tr class="impair"> 
+    <td class="half">
+      {if !$has_cs}Aucun sondage en cours{/if}
+      {if $smarty.session.auth}<a style="display: block; float: right;" href="survey/edit/new">{icon name=page_edit} Proposer un sondage</a>{/if}
+    </td> 
+  </tr> 
 </table>
 
 <br />
     </th>
   </tr>
   {iterate item=s from=$survey_old}
-  <tr class="{cycle values="impair,pair"}">
+    {if $smarty.session.auth || $s.mode == Survey::MODE_ALL}
+  <tr class="{cycle name=os_cycle values="impair,pair"}">
     <td class="half">
       &bull;
-      <a href="survey/show/{$s.survey_id}">
-        {$s.title} ({$s.end|date_format:"%x"})
+      <a href="survey/result/{$s.id}">
+        {$s.title} [{$s.end|date_format:"%x"} - {$survey_modes[$s.mode]}]
       </a>
     </td>
   </tr>
-  {assign var="has_os" value="true"}
+      {assign var="has_os" value="true"}
+    {/if}
   {/iterate}
   {if !$has_os}
   <tr>
@@ -72,6 +77,4 @@
   {/if}
 </table>
 
-<a href="./survey/edit/new">Proposer un sondage</a>
-
 {* vim:set et sw=2 sts=2 ts=8 enc=utf-8: *}