1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 09:24:25 +03:00
ifhub.club/application/frontend/skin/developer/polls/poll.form.list.tpl
2014-02-10 18:09:17 +07:00

14 lines
334 B
Smarty

{**
* Список добавленных опросов в форме добавления
*
* @styles poll.css
* @scripts <common>/js/poll.js
*}
<ul class="poll-form-list js-poll-form-list">
{if $aPollItems}
{foreach $aPollItems as $oPoll}
{include 'polls/poll.form.list.item.tpl' oPoll=$oPoll}
{/foreach}
{/if}
</ul>