1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-17 05:44:26 +03:00
ifhub.club/application/frontend/components/poll/poll.tpl
Denis Shakhov 19239e8b79 Добавление префикса ls компонентам
+ Обновление фреймворка
2015-05-20 23:27:10 +07:00

15 lines
415 B
Smarty

{**
* Опрос
*
* @param ModulePoll_EntityPoll $poll Опрос
*}
<div class="ls-poll poll-type-{$poll->getTargetType()} js-poll" data-poll-id="{$poll->getId()}" data-poll-answer-max="{$poll->getCountAnswerMax()}">
<h3 class="ls-poll-title">{$poll->getTitle()}</h3>
{if ! $poll->getVoteCurrent()}
{include './poll.vote.tpl' poll=$poll}
{else}
{include './poll.result.tpl' oPoll=$poll}
{/if}
</div>