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/user.tpl

32 lines
765 B

<table class="title">
<tr>
<td class="header">
<img class="icon" src="images/user.png" alt="" />
{$lang_users} ({$users|@count})
</td>
<td align="right">
<a href="useradd.php"><img src="images/user_add.png" alt="{$lang_user_add}" /></a>
</td>
</tr>
</table>
<table class="info">
<tr>
<td class="header">
{$lang_user_name}
</td>
<td class="header">
{$lang_user_displayname}
</td>
</tr>
{foreach item=user from=$users}
<tr>
<td class="label">
<a href="userview.php?user_id={$user.user_id}">{$user.user_name}</a>
</td>
<td class="value">
{$user.user_displayname}
</td>
</tr>
{/foreach}
</table>