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>
|
2015-10-22 22:48:30 +02:00
|
|
|
<link rel="stylesheet" href="{'css/jquery-ui.min.css'|resource}">
|
|
|
|
|
2016-05-12 16:20:47 +02:00
|
|
|
{if $admin}
|
|
|
|
<script src="{"js/simplemde.min.js"|resource}" type="text/javascript"></script>
|
|
|
|
<script src="{"js/mde-wrapper.js"|resource}" type="text/javascript"></script>
|
|
|
|
<script src="{"js/app/adminstuds.js"|resource}" type="text/javascript"></script>
|
|
|
|
<link rel="stylesheet" href="{'css/simplemde.min.css'|resource}">
|
|
|
|
{/if}
|
2015-10-22 22:48:30 +02:00
|
|
|
|
2015-03-26 16:33:11 +01:00
|
|
|
{/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-10-28 17:30:42 +01:00
|
|
|
{* Messages *}
|
2016-05-09 15:01:39 +02:00
|
|
|
{include 'part/messages.tpl'}
|
|
|
|
|
2015-03-26 17:09:52 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{if !$accessGranted && !$resultPubliclyVisible}
|
2014-12-17 13:17:08 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{include 'part/password_request.tpl' active=$poll->active}
|
2014-12-12 13:43:43 +01:00
|
|
|
|
2015-02-28 19:18:59 +01:00
|
|
|
{else}
|
2014-12-15 13:29:27 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{* Global informations about the current poll *}
|
|
|
|
{include 'part/poll_info.tpl' admin=$admin}
|
|
|
|
|
|
|
|
{* Information about voting *}
|
|
|
|
{if $expired}
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<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>
|
|
|
|
</div>
|
|
|
|
{else}
|
|
|
|
{if $admin}
|
|
|
|
{include 'part/poll_hint_admin.tpl'}
|
|
|
|
{else}
|
|
|
|
{include 'part/poll_hint.tpl' active=$poll->active}
|
|
|
|
{/if}
|
|
|
|
{/if}
|
2015-03-26 16:33:11 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{if !$accessGranted && $resultPubliclyVisible}
|
|
|
|
{include 'part/password_request.tpl' active=$poll->active}
|
|
|
|
{/if}
|
2014-12-15 13:29:27 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{* Vote table *}
|
|
|
|
{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
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{* Comments *}
|
|
|
|
{include 'part/comments.tpl' active=$poll->active comments=$comments}
|
2014-12-15 13:49:25 +01:00
|
|
|
|
2015-10-28 17:30:42 +01:00
|
|
|
{/if}
|
2014-12-17 13:22:09 +01:00
|
|
|
|
2015-06-17 22:39:14 +02:00
|
|
|
{/block}
|