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/developer-jquery/system_message.tpl
2011-04-01 07:49:36 +00:00

28 lines
485 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}