1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-16 21:34:25 +03:00
ifhub.club/application/frontend/skin/developer/components/poll/poll.manage.item.tpl
2014-06-23 19:51:40 +07:00

24 lines
978 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{**
* Добавленный опрос в блоке управления опросами
*
* @param ModulePoll_EntityPoll $oPoll Опрос
*
* @styles poll.css
* @scripts <common>/js/poll.js
*}
<li class="poll-manage-item js-poll-manage-item" data-poll-id="{$oPoll->getId()}" data-poll-target-tmp="{$oPoll->getTargetTmp()}">
{* Заголовок *}
{$oPoll->getTitle()}
{* Действия *}
<ul class="user-list-small-item-actions">
{* Редактировать *}
{* Показывает модальное окно с формой редактирования опроса *}
<li class="icon-edit js-poll-manage-item-edit"
title="{$aLang.common.edit}" data-poll-id="{$oPoll->getId()}" data-poll-target-tmp="{$oPoll->getTargetTmp()}"></li>
{* Удалить *}
<li class="icon-remove js-poll-manage-item-remove" title="{$aLang.common.remove}" data-poll-id="{$oPoll->getId()}" data-poll-target-tmp="{$oPoll->getTargetTmp()}"></li>
</ul>
</li>