1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 16:04:24 +03:00
ifhub.club/application/frontend/skin/developer/user_list.tpl
2014-04-08 18:43:35 +07:00

31 lines
763 B
Smarty

{**
* Список пользователей
*}
{if $aUsersList}
{if $iSearchCount}
<h3 class="h3">Найдено {$iSearchCount} человек</h3>
{/if}
{* Список пользователей *}
<ul class="object-list user-list js-more-users-container">
{include 'user_list.items.tpl' aUsersList=$aUsersList}
</ul>
{if $bUseMore}
{if !$bHideMore}
{include 'components/more/more.tpl'
sClasses = 'js-more-search'
sTarget = '.js-more-users-container'
sAttributes = 'data-search-type="users" data-proxy-page-next="2"'}
{/if}
{else}
{include 'pagination.tpl' aPaging=$aPaging}
{/if}
{else}
{include 'alert.tpl' mAlerts=(($sUserListEmpty) ? $sUserListEmpty : $aLang.blog.alerts.empty) sAlertStyle='empty'}
{/if}