1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-05-19 09:18:18 +03:00
ifhub.club/templates/skin/habra/system_message.tpl
2008-09-21 06:36:57 +00:00

27 lines
361 B
Smarty

{if $aMsgError}
<br>
<br>
<div id="system_messages_error">
<ul>
{foreach from=$aMsgError item=aMsg}
<li>
<b>{$aMsg.title}</b>: {$aMsg.msg}
</li>
{/foreach}
</ul>
</div>
{/if}
{if $aMsgNotice}
<br>
<br>
<div id="system_messages_notice">
<ul>
{foreach from=$aMsgNotice item=aMsg}
<li>
<b>{$aMsg.title}</b>: {$aMsg.msg}
</li>
{/foreach}
</ul>
</div>
{/if}