You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cvm/frontend/templates/admin.users.tpl

27 lines
662 B
Smarty

<h2>{%!title-admin-userlist}</h2>
<table class="userlist">
<tr>
<th>{%!admin-title-username}</th>
<th>{%!admin-title-email}</th>
<th>{%!admin-title-accesslevel}</th>
</tr>
{%foreach user in users}
<tr class="clickable" data-url="/admin/user/{%?user[id]}/">
<td>{%?user[username]}</td>
<td>{%?user[email]}</td>
<td>
{%if user[accesslevel] == 1}
{%!admin-level-enduser}
{%/if}{%if user[accesslevel] == 10}
{%!admin-level-reseller}
{%/if}{%if user[accesslevel] == 20}
{%!admin-level-nodeadmin}
{%/if}{%if user[accesslevel] == 30}
{%!admin-level-masteradmin}
{%/if}
</td>
</tr>
{%/foreach}
</table>