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.
35 lines
728 B
35 lines
728 B
<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] |