1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00
ifhub.club/templates/skin/synio/system_message.tpl
2012-04-23 17:53:41 +07:00

28 lines
501 B
Smarty

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