Просмотр файла globalchat/view/globalchat/templates/user_profile.tpl

Размер файла: 1.53Kb
{* Smarty *}

{if $userRank == 1}
{assign var="medal" value="gold"}
{elseif $userRank == 2}
{assign var="medal" value="silver"}
{elseif $userRank == 3}
{assign var="medal" value="bronze"}
{else}
{assign var="medal" value="no"}
{/if}
<div class='{$smarty.const.DIV_M_USER_PROFILE_TITLE}'>
{user_nick attrs="href='user_menu.php?user_id={$userId}'" user=$usersInfo.{$userId} icon='1'} {user_rights_group_name group=$usersInfo.{$userId}.rights_group}
</div>
<div class='{$smarty.const.DIV_M_USER_PROFILE}'>
<img src='icons/medal_{$medal}.png' alt='' /> {$userRank} место в рейтинге<br />
<img src='icons/lightning_grey_16.png' alt='' /> Рейтинг: {$usersInfo.{$userId}.points}<br /> 
<img src='icons/lightbulb_grey_16.png' alt='' /> Интеллект: {$usersInfo.{$userId}.brain}<br />
<img src='icons/email_grey_16.png' alt='' /> Сообщений: {$usersInfo.{$userId}.msg_counter}<br />
<img src='icons/chat_grey_16.png' alt='' /> Провел в чате: {text_timer time="{$usersInfo.{$userId}.spent_time_chatting}"}<br />
<img src='icons/rss_grey_16.png' alt='' /> Последняя активность: {text_timer text=1 time="`$smarty.now -  {$usersInfo.{$userId}.time_of_last_request}`"}<br />
<img src='icons/power_grey_16.png' alt='' /> Первый вход в чат: {text_timer text=1 time="`$smarty.now - {$usersInfo.{$userId}.time_of_first_request}`"}</div>
<div class='{$smarty.const.DIV_M_NAVIGATION_FOOT}'><a href='user_menu.php?user_id={$userId}'>&laquo; Вернуться в меню</a></div>