12 lines
699 B
HTML
12 lines
699 B
HTML
|
{include file=$header_admin h1='Администрирование пользователей' title='Администрирование пользователей'}
|
||
|
<form action='/act/admin_user' method='post' class='input-group'>
|
||
|
<input type='text' name='find_user' class='form-control' placeholder='Найти пользователя'>
|
||
|
<input type='submit' name='ok' value='Найти'>
|
||
|
</form>
|
||
|
<table class='table'>
|
||
|
<tr><td><b>Логин</b></td><td><b>E-Mail</b></td></tr>
|
||
|
{section name=customer loop=$list}{if $list[customer].id}
|
||
|
<tr><td>{$list[customer].login}</td><td>{$list[customer].email}</td></tr>
|
||
|
{/if}{/section}
|
||
|
</table>
|
||
|
{include file=$footer_admin}
|