1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/templates/skin/developer-jquery/system_message.tpl

28 lines
485 B
Smarty
Raw Normal View History

2011-04-01 10:49:36 +03:00
{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}