Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / templates / hysteria / modules / get_poll_box.tpl
1 <!--
2 This program is free software. It comes without any warranty, to
3 the extent permitted by applicable law. You can redistribute it
4 and/or modify it under the terms of the Do What The Fuck You Want
5 To Public License, Version 2, as published by Sam Hocevar. See
6 http://sam.zoy.org/wtfpl/COPYING for more details.
7 -->
8
9 <!--showing poll-->
10 {if $poll_id eq true}{get_poll poll_id=$poll_id}
11 {else}{get_poll}{/if}
12
13 {if $get_poll.question eq true}
14 <table width='66%' align='center' class='bordered'>
15 <tr><td colspan='3' align='center'><b>{$get_poll.question}</b></td></tr>
16 {foreach from=$get_poll.options item=option name=poll_option}
17 <tr><td>
18 {if $get_poll.voted eq 'yes'}
19 {$option.text}
20 {else}
21 <a href='/id/{$get_poll.node_id}/{$smarty.foreach.poll_option.iteration}'>{$option.text}</a>
22 {/if}
23 <td><table style='background-color:#6dae42;width: {math equation="(x/y)*100" format="%d" x=$option.number y=$get_poll.total} pt;'><tr height=5><td height=5></td></tr></table>
24 <td>{math equation="(x/y)*100" format="%.1f" x=$option.number y=$get_poll.total}%</td></tr>
25
26 {/foreach}
27 <tr><td colspan='3' align='center'><i>{$get_poll.total} voted</i></td></tr>
28 </table>
29 {/if}
30 <!--end of showing poll-->
This page took 0.280421 seconds and 4 git commands to generate.