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/user/stat.tpl
2014-10-10 23:29:24 +07:00

17 lines
825 B
Smarty

{$stat = $smarty.local.stat}
<div class="user-stat">
{* Кол-во пользователей *}
{include 'components/info-list/info-list.tpl' iInfoListLabelWidth=200 aInfoList=[
[ 'label' => "{lang name='user.stats.all'}:", 'content' => $aStat.count_all ],
[ 'label' => "{lang name='user.stats.active'}:", 'content' => $aStat.count_active ],
[ 'label' => "{lang name='user.stats.not_active'}:", 'content' => $aStat.count_inactive ]
]}
{* Пол *}
{include 'components/info-list/info-list.tpl' iInfoListLabelWidth=200 aInfoList=[
[ 'label' => "{lang name='user.stats.men'}:", 'content' => $aStat.count_sex_man ],
[ 'label' => "{lang name='user.stats.women'}:", 'content' => $aStat.count_sex_woman ],
[ 'label' => "{lang name='user.stats.none'}:", 'content' => $aStat.count_sex_other ]
]}
</div>