1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/templates/skin/developer/system_message.tpl
2009-05-08 20:24:43 +00:00

29 lines
445 B
Smarty

{if $aMsgError}
<div class="system-messages-error">
<ul>
{foreach from=$aMsgError item=aMsg}
<li>
{if $aMsg.title!=''}
<b>{$aMsg.title}</b>:
{/if}
{$aMsg.msg}
</li>
{/foreach}
</ul>
</div>
{/if}
{if $aMsgNotice}
<div class="system-messages-notice">
<ul>
{foreach from=$aMsgNotice item=aMsg}
<li>
{if $aMsg.title!=''}
<strong>{$aMsg.title}</strong>:
{/if}
{$aMsg.msg}
</li>
{/foreach}
</ul>
</div>
{/if}