1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-17 08:18:18 +03:00
ifhub.club/templates/skin/habra/system_message.tpl

33 lines
429 B
Smarty

{if $aMsgError}
<br>
<br>
<div id="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}
<br>
<br>
<div id="system_messages_notice">
<ul>
{foreach from=$aMsgNotice item=aMsg}
<li>
{if $aMsg.title!=''}
<b>{$aMsg.title}</b>:
{/if}
{$aMsg.msg}
</li>
{/foreach}
</ul>
</div>
{/if}