1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-17 13:54:26 +03:00
ifhub.club/application/frontend/skin/developer/components/blog/blocks/block.blog-admins.tpl

28 lines
828 B
Smarty
Raw Normal View History

2014-01-25 14:39:19 +02:00
{**
* Список управляющих блога
*}
{extends 'Component@block.block'}
2014-01-25 14:39:19 +02:00
2014-08-22 15:41:12 +03:00
{block 'block_title'}
{$aLang.blog.administrators}
2014-08-22 15:41:12 +03:00
{/block}
{block 'block_options' append}
{$mods = "{$mods} blog-admins"}
2014-08-22 15:41:12 +03:00
{/block}
2014-01-25 14:39:19 +02:00
{block 'block_content'}
{* Создатель *}
{component 'user' template='list-small' users=[ $blog->getOwner() ] title=$aLang.blog.owner}
2014-01-25 14:39:19 +02:00
{* Администраторы *}
{if count($blogAdministrators)}
{component 'user' template='list-small' users=$blogAdministrators title="{$aLang.blog.administrators} ({count($blogAdministrators)})"}
{/if}
2014-01-25 14:39:19 +02:00
{* Модераторы *}
{if count($blogModerators)}
{component 'user' template='list-small' users=$blogModerators title="{$aLang.blog.moderators} ({count($blogModerators)})"}
{/if}
2014-01-25 14:39:19 +02:00
{/block}