You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
918 B

{* $Id$ *}
<div id="tikifeedback">
{if !empty($tikifeedback)}
{foreach $tikifeedback as $tpl => $fb}
{if $tpl === 'default'}
{foreach $fb as $item}
{remarksbox type=$item.type title=$item.title icon=$item.icon}
{if $item.mes|count == 1}
<ul class="list-unstyled">
{else}
<ul>
{/if}
{foreach $item.mes as $mes}
<li>
{$mes}
</li>
{/foreach}
</ul>
{/remarksbox}
{/foreach}
{elseif $tpl}
{include file='feedback/'|cat:$tpl|cat:'.tpl'}
{/if}
{/foreach}
{/if}
</div>