1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 17:34:26 +03:00
ifhub.club/application/frontend/skin/developer/blocks/block.usersSearch.tpl

31 lines
1.2 KiB
Smarty
Raw Normal View History

{**
* Статистика по пользователям
*
* @styles css/blocks.css
*}
2014-08-22 15:41:12 +03:00
{extends 'components/block/block.tpl'}
2014-08-22 15:41:12 +03:00
{block 'block_options' append}
{$mods = "{$mods} users-search"}
2014-08-22 15:41:12 +03:00
{/block}
2014-08-22 15:41:12 +03:00
{block 'block_title'}
Поиск по пользователям
2014-08-22 15:41:12 +03:00
{/block}
{block 'block_content'}
{* Сейчас на сайте *}
{include 'components/field/field.checkbox.tpl'
name = 'is_online'
inputClasses = 'js-search-ajax-option'
inputAttributes = 'data-search-type="users"'
checked = false
label = 'Сейчас на сайте'}
{* Пол *}
<p class="mb-10">Пол</p>
{include 'components/field/field.radio.tpl' inputClasses='js-search-ajax-option' inputAttributes='data-search-type="users"' name='sex' value='' checked=true label='Любой'}
{include 'components/field/field.radio.tpl' inputClasses='js-search-ajax-option' inputAttributes='data-search-type="users"' name='sex' value='man' label='Мужской'}
{include 'components/field/field.radio.tpl' inputClasses='js-search-ajax-option' inputAttributes='data-search-type="users"' name='sex' value='woman' label='Женский'}
{/block}