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/modals/modal.poll_create.tpl

29 lines
682 B
Smarty
Raw Normal View History

{**
* Создание опроса
*
* @styles css/modals.css
*}
2014-04-28 13:34:54 +03:00
{extends 'components/modal/modal.tpl'}
{block name='modal_id'}modal-poll-create{/block}
{block name='modal_class'}modal-poll-create js-modal-default{/block}
2014-02-10 13:09:17 +02:00
{block name='modal_title'}
{if $oPoll}
{$aLang.poll.form.title.edit}
{else}
{$aLang.poll.form.title.add}
{/if}
{/block}
{block name='modal_content'}
2014-06-23 15:51:40 +03:00
{include 'components/poll/poll.form.tpl'}
{/block}
{block name='modal_footer_begin'}
{include 'components/button/button.tpl'
sForm = '#js-poll-form'
sText = ($oPoll) ? $aLang.common.save : $aLang.common.add
sClasses = 'js-poll-form-submit'
2014-06-23 15:51:40 +03:00
sMods = 'primary'}
{/block}