1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/templates/skin/synio/user_list_avatar.tpl
2012-05-07 09:02:25 +07:00

20 lines
556 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}