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/system_message.tpl
Denis Shakhov aadeb5a6cf Доработка шаблонов
* Исправлено именование некоторых файлов
* Оптимизация стилей
* Оптимизация шаблонов
* Мелкие исправления
2013-06-30 10:02:51 +07:00

34 lines
551 B
Smarty

{**
* Системные сообщения
*}
{if ! $bNoSystemMessages}
{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}