Changes adopted from version 0.5

This commit is contained in:
2023-02-13 10:42:09 +01:00
parent faf5f368f5
commit 76ccecca7f
198 changed files with 10261 additions and 5068 deletions
+35
View File
@@ -0,0 +1,35 @@
<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]