date.chapril.org-framadate/tpl/studs.tpl

42 lines
1.2 KiB
Smarty
Raw Normal View History

2014-12-15 13:33:39 +01:00
{extends file='page.tpl'}
2014-12-15 13:33:39 +01:00
{block name=main}
{if !empty($message)}
<div class="alert alert-dismissible alert-{$message->type}" role="alert">{$message->message}<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button></div>
{/if}
2014-12-17 13:17:08 +01:00
{* Global informations about the current poll *}
{include 'part/poll_info.tpl' admin=$admin}
{* Information about voting *}
{if $admin}
{include 'part/poll_hint_admin.tpl'}
{else}
{include 'part/poll_hint.tpl' active=$poll->active}
{/if}
{* Scroll left and right *}
<div class="hidden row scroll-buttons" aria-hidden="true">
<div class="btn-group pull-right">
<button class="btn btn-sm btn-link scroll-left" title="{_('Scroll to the left')}">
<span class="glyphicon glyphicon-chevron-left"></span>
</button>
<button class="btn btn-sm btn-link scroll-right" title="{_('Scroll to the right')}">
<span class="glyphicon glyphicon-chevron-right"></span>
</button>
</div>
</div>
2014-12-15 13:29:27 +01:00
{* Vote table *}
2014-12-15 13:29:27 +01:00
{include 'part/vote_table.tpl' active=$poll->active}
{* Comments *}
{include 'part/comments.tpl' active=$poll->active comments=$comments}
2014-12-15 13:33:39 +01:00
{/block}