IP Reg is a IPAM tool to keep track of assets, nodes (IP addresses, MAC addresses, DNS aliases) within different subnets, over different locations or even VLAN's. Written in PHP, used with a MySQL-database to have a unique insight in your local network.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
ipreg/tpl/userview.tpl

60 lines
1.1 KiB

<table border="0" width="100%">
<tr>
<td>
<b>{lang_user}:</b>
</td>
<td align="right">
<a href="useredit.php?user_id={user_id}"><img src="images/edit.gif" border="0" title="{lang_user_edit}"></a>
<a href="userdel.php?user_id={user_id}"><img src="images/del.gif" border="0" title="{lang_user_del}"></a>
</td>
</tr>
</table>
<p>
<table border="0">
<tr>
<td>
<b>{lang_user_name}:</b>
</td>
<td>
{user_name}
</td>
</tr>
<tr>
<td>
<b>{lang_user_displayname}:</b>
</td>
<td>
{user_displayname}
</td>
</tr>
<tr>
<td>
<b>{lang_mac}:</b>
</td>
<td>
{user_mac}
</td>
</tr>
<tr>
<td>
<b>{lang_language}:</b>
</td>
<td>
{user_lang}
</td>
</tr>
[BLOCK table AS userclass]
<tr>
<td>
<b>{lang_userclasses}:</b>
</td>
<td>
[BLOCK userclassrow]
<a href="userclassview.php?userclass_id={userclass_id}">{userclass_name}</a><br>
[END userclassrow]
</td>
</tr>
[END table]
</table>