1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/templates/skin/synio/system_message.tpl
2013-06-19 20:32:58 +07:00

34 lines
558 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}