1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-07 17:04:24 +03:00
ifhub.club/application/frontend/skin/developer/blocks/block.blogAdmins.tpl
2014-04-28 17:34:54 +07:00

21 lines
815 B
Smarty

{**
* Список управляющих блога
*
* @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'}
{* Создатель *}
{include 'components/user_list_small/user_list_small.tpl' aUserList=[ $oBlog->getOwner() ] sUserListSmallTitle=$aLang.blog.owner}
{* Администраторы *}
{include 'components/user_list_small/user_list_small.tpl' aUserList=$aBlogAdministrators sUserListSmallTitle="{$aLang.blog.administrators} ({$iCountBlogAdministrators})"}
{* Модераторы *}
{include 'components/user_list_small/user_list_small.tpl' aUserList=$aBlogModerators sUserListSmallTitle="{$aLang.blog.moderators} ({$iCountBlogModerators})"}
{/block}