2014-12-15 13:33:39 +01:00
|
|
|
{extends file='page.tpl'}
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-03-26 16:33:11 +01:00
|
|
|
{block name="header"}
|
2015-06-17 22:39:14 +02:00
|
|
|
<script src="{"js/Chart.min.js"|resource}" type="text/javascript"></script>
|
|
|
|
<script src="{"js/Chart.StackedBar.js"|resource}" type="text/javascript"></script>
|
2015-03-26 16:33:11 +01:00
|
|
|
<script src="{"js/app/studs.js"|resource}" type="text/javascript"></script>
|
|
|
|
{/block}
|
|
|
|
|
2014-12-15 13:33:39 +01:00
|
|
|
{block name=main}
|
2014-12-12 13:51:13 +01:00
|
|
|
|
2015-03-26 17:09:52 +01:00
|
|
|
|
2015-03-26 16:33:11 +01:00
|
|
|
<div id="message-container">
|
|
|
|
{if !empty($message)}
|
2015-05-29 11:48:47 +02:00
|
|
|
<div class="alert alert-dismissible alert-{$message->type|html} hidden-print" role="alert">{$message->message|html}{if $message->link != null}<br/><a href="{$message->link}">{$message->link}</a>{/if}<button type="button" class="close" data-dismiss="alert" aria-label="{__('Generic', 'CLose')}"><span aria-hidden="true">×</span></button></div>
|
2015-03-26 16:33:11 +01:00
|
|
|
{/if}
|
|
|
|
</div>
|
2015-05-29 11:48:47 +02:00
|
|
|
<div id="nameErrorMessage" class="hidden alert alert-dismissible alert-danger hidden-print" role="alert">{__('Error', 'The name is invalid.')}<button type="button" class="close" data-dismiss="alert" aria-label="{__('Generic', 'CLose')}"><span aria-hidden="true">×</span></button></div>
|
2015-03-26 17:09:52 +01:00
|
|
|
|
2014-12-17 13:17:08 +01:00
|
|
|
|
2015-03-26 17:09:52 +01:00
|
|
|
{* Global informations about the current poll *}
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2014-12-18 12:47:51 +01:00
|
|
|
{include 'part/poll_info.tpl' admin=$admin}
|
2014-12-17 13:22:09 +01:00
|
|
|
|
|
|
|
{* Information about voting *}
|
2015-02-28 19:18:59 +01:00
|
|
|
{if $expired}
|
|
|
|
<div class="alert alert-danger">
|
2015-03-30 15:19:56 +02:00
|
|
|
<p>{__('studs', 'The poll is expired, it will be deleted soon.')}</p>
|
|
|
|
<p>{__('studs', 'Deletion date:')} {$deletion_date|date_format:$date_format['txt_short']|html}</p>
|
2015-02-28 19:18:59 +01:00
|
|
|
</div>
|
2014-12-17 13:22:09 +01:00
|
|
|
{else}
|
2015-02-28 19:18:59 +01:00
|
|
|
{if $admin}
|
|
|
|
{include 'part/poll_hint_admin.tpl'}
|
|
|
|
{else}
|
|
|
|
{include 'part/poll_hint.tpl' active=$poll->active}
|
|
|
|
{/if}
|
2014-12-17 13:22:09 +01:00
|
|
|
{/if}
|
|
|
|
|
|
|
|
{* Scroll left and right *}
|
|
|
|
|
|
|
|
<div class="hidden row scroll-buttons" aria-hidden="true">
|
|
|
|
<div class="btn-group pull-right">
|
2015-03-30 15:19:56 +02:00
|
|
|
<button class="btn btn-sm btn-link scroll-left" title="{__('Poll results', 'Scroll to the left')}">
|
2014-12-17 13:22:09 +01:00
|
|
|
<span class="glyphicon glyphicon-chevron-left"></span>
|
|
|
|
</button>
|
2015-03-30 15:19:56 +02:00
|
|
|
<button class="btn btn-sm btn-link scroll-right" title="{__('Poll results', 'Scroll to the right')}">
|
2014-12-17 13:22:09 +01:00
|
|
|
<span class="glyphicon glyphicon-chevron-right"></span>
|
|
|
|
</button>
|
2014-12-15 13:36:26 +01:00
|
|
|
</div>
|
2014-12-17 13:22:09 +01:00
|
|
|
</div>
|
2014-12-15 13:29:27 +01:00
|
|
|
|
2015-03-26 16:33:11 +01:00
|
|
|
|
2014-12-17 13:22:09 +01:00
|
|
|
{* Vote table *}
|
2014-12-15 13:29:27 +01:00
|
|
|
|
2014-12-27 00:00:14 +01:00
|
|
|
{if $poll->format === 'D'}
|
|
|
|
{include 'part/vote_table_date.tpl' active=$poll->active}
|
|
|
|
{else}
|
|
|
|
{include 'part/vote_table_classic.tpl' active=$poll->active}
|
|
|
|
{/if}
|
2014-12-15 13:36:26 +01:00
|
|
|
|
2014-12-17 13:22:09 +01:00
|
|
|
{* Comments *}
|
2014-12-15 13:49:25 +01:00
|
|
|
|
2014-12-17 23:12:05 +01:00
|
|
|
{include 'part/comments.tpl' active=$poll->active comments=$comments}
|
2014-12-17 13:22:09 +01:00
|
|
|
|
2015-06-17 22:39:14 +02:00
|
|
|
{/block}
|