1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/templates/skin/developer/system_message.tpl

34 lines
553 B
Smarty

{**
* Системные сообщения
*}
{if ! $noShowSystemMessage}
{if $aMsgError}
<ul class="alert alert-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="alert alert-success">
{foreach from=$aMsgNotice item=aMsg}
<li>
{if $aMsg.title != ''}
<strong>{$aMsg.title}</strong>:
{/if}
{$aMsg.msg}
</li>
{/foreach}
</ul>
{/if}
{/if}