1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-16 21:34:25 +03:00
ifhub.club/application/frontend/skin/developer/blocks/block.blogAdmins.tpl

21 lines
815 B
Smarty
Raw Normal View History

2014-01-25 14:39:19 +02:00
{**
* Список управляющих блога
*
* @styles css/blocks.css
*}
{extends 'blocks/block.aside.base.tpl'}
{block 'block_title'}{$aLang.blog.administrators}{/block}
{block 'block_type'}blog-admins{/block}
{block 'block_content'}
{* Создатель *}
2014-04-28 13:34:54 +03:00
{include 'components/user_list_small/user_list_small.tpl' aUserList=[ $oBlog->getOwner() ] sUserListSmallTitle=$aLang.blog.owner}
2014-01-25 14:39:19 +02:00
{* Администраторы *}
2014-04-28 13:34:54 +03:00
{include 'components/user_list_small/user_list_small.tpl' aUserList=$aBlogAdministrators sUserListSmallTitle="{$aLang.blog.administrators} ({$iCountBlogAdministrators})"}
2014-01-25 14:39:19 +02:00
{* Модераторы *}
2014-04-28 13:34:54 +03:00
{include 'components/user_list_small/user_list_small.tpl' aUserList=$aBlogModerators sUserListSmallTitle="{$aLang.blog.moderators} ({$iCountBlogModerators})"}
2014-01-25 14:39:19 +02:00
{/block}