1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-01 05:55:02 +03:00
ifhub.club/templates/skin/synio/user_list_avatar.tpl
2013-06-19 20:32:58 +07:00

24 lines
625 B
Smarty

{**
* Список пользователей (аватары)
*}
{if $aUsersList}
<ul class="user-list-avatar">
{foreach from=$aUsersList item=oUserList}
{assign var="oSession" value=$oUserList->getSession()}
<li>
<a href="{$oUserList->getUserWebPath()}" title="{$oUserList->getLogin()}"><img src="{$oUserList->getProfileAvatarPath(48)}" alt="avatar" class="avatar" /></a>
</li>
{/foreach}
</ul>
{else}
{if $sUserListEmpty}
<div class="notice-empty">{$sUserListEmpty}</div>
{else}
<div class="notice-empty">{$aLang.user_empty}</div>
{/if}
{/if}
{include file='paging.tpl' aPaging=$aPaging}