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

86 lines
1.9 KiB

<table class="title">
<tr>
<td class="header">
{assetclass_name}
</td>
<td align="right">
<a href="assetadd.php?assetclass_id={assetclass_id}"><img src="image.php?icon=add" alt="{lang_asset_add}"></a>
<a href="assetclassedit.php?assetclass_id={assetclass_id}"><img src="image.php?icon=edit" alt="{lang_assetclass_edit}"></a>
<a href="assetclassdel.php?assetclass_id={assetclass_id}"><img src="image.php?icon=delete" alt="{lang_assetclass_add}"></a>
</td>
</tr>
</table>
<p>
[BLOCK assetclass_table AS assetclass_table]
<table class="info">
[BLOCK assetclass_row]
<tr>
<td class="header">
{lang_assetclass}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{lang_assetclass_name}
</td>
<td class="value">
<a href="assetclassview.php?assetclass_id={assetclass_id}">{assetclass_name}</a>
</td>
</tr>
[END assetclass_row]
</table>
[END assetclass_table]
<p>
[BLOCK assetclassgroup_table AS assetclassgroup_table]
<table class="info">
<tr>
<td class="header">
{lang_assetclassgroup}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{lang_assetclassgroup_name}
</td>
<td class="value">
<a href="assetclassgroupview.php?assetclassgroup_id={assetclassgroup_id}">{assetclassgroup_name}</a><br>
</td>
</tr>
</table>
[END assetclassgroup_table]
<p>
<table class="info">
<tr>
<td class="header">
{lang_assets}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{lang_assets} ({asset_counter})
</td>
<td class="value">
[BLOCK asset_table AS asset_table]
[BLOCK asset_row]
<a href="assetview.php?asset_id={asset_id}">{asset_name}</a><br>
[END asset_row]
[END asset_table]
</td>
</tr>
</table>