ipreg/tpl/user.tpl

35 lines
679 B
Smarty

<table class="title">
<tr>
<td class="header">
{lang_users} ({user_counter})
</td>
<td align="right">
<a href="useradd.php"><img src="image.php?icon=add" alt="{lang_user_add}"></a>
</td>
</tr>
</table>
<p>
[BLOCK user_table AS user_table]
<table class="info">
<tr>
<td class="header">
{lang_user_name}
</td>
<td class="header">
{lang_user_displayname}
</td>
</tr>
[BLOCK user_row]
<tr>
<td class="label">
<a href="userview.php?user_id={user_id}">{user_name}</a>
</td>
<td class="value">
{user_displayname}
</td>
</tr>
[END user_row]
</table>
[END user_table]