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

49 lines
1.0 KiB

<table border="0">
<tr>
<td>
<b>{lang_assetclass_name}:</b>
</td>
<td>
{assetclass_name}
</td>
</tr>
<tr>
<td>
<b>{lang_assetclassgroup_name}:</b>
</td>
<td>
<a href="assetclassgroupview.php?assetclassgroup_id={assetclassgroup_id}">{assetclassgroup_name}</a>
</td>
</tr>
[BLOCK table AS asset]
<tr>
<td>
<b>{lang_assets}:</b><br>
</td>
<td>
[BLOCK assetrow]
<a href="assetview.php?asset_id={asset_id}">{asset_name}</a><br>
[END assetrow]
</td>
</tr>
[END table]
</table>
<p>
<table border="0">
[BLOCK assetclassedit]
<tr>
<td>
<img src="images/arrow.gif" border="0">&nbsp;<a href="assetclassedit.php?assetclass_id={assetclass_id}">{lang_assetclass_edit}</a>
</td>
</tr>
[END assetclassedit]
[BLOCK assetclassdel]
<tr>
<td>
<img src="images/arrow.gif" border="0">&nbsp;<a href="assetclassdel.php?assetclass_id={assetclass_id}">{lang_assetclass_del}</a>
</td>
</tr>
[END assetclassdel]
</table>