ipreg/tpl/node.tpl

35 lines
728 B
Smarty

<table class="title">
<tr>
<td class="header">
{lang_nodes} ({node_counter})
</td>
<td align="right">
<a href="nodeadd.php?subnet_id={subnet_id}"><img src="image.php?icon=add" alt="{lang_node_add}"></a>
</td>
</tr>
</table>
<p>
[BLOCK node_table AS node_table]
<table class="info">
<tr>
<td class="header">
{lang_ip}
</td>
<td class="header">
{lang_asset_name}
</td>
</tr>
[BLOCK node_row]
<tr>
<td class="label">
<a href="nodeview.php?node_id={node_id}">{node_ip}</a>
</td>
<td class="value">
<a href="assetview.php?asset_id={asset_id}">{asset_name}</a>
</td>
</tr>
[END node_row]
</table>
[END node_table]