Changes adopted from version 0.4

This commit is contained in:
2023-02-13 09:56:14 +01:00
parent 8d00ee5e1b
commit faf5f368f5
152 changed files with 4971 additions and 1379 deletions
+22 -11
View File
@@ -1,26 +1,41 @@
<form method="POST" action="submit.php">
<input type="hidden" name="edit" value="node">
<input type="hidden" name="node_id" value="{node_id}">
<table border="0">
<table border="0" width="100%">
<tr>
<td colspan="2">
<td>
<b>{lang_node_edit}:</b><br>
</td>
<td align="right">
<input type="image" src="images/save.gif" title="{lang_submit}">
</td>
</tr>
</table>
<p>
<table border="0">
[BLOCK table AS asset]
<tr>
<td>
{lang_asset_name}:
{lang_asset}:
</td>
<td>
{asset_name}:
<select name="asset_id">
[BLOCK assetrow]
<option value="{asset_id}" {asset_selected}>{asset_name}</option>
[END assetrow]
</select>
</td>
</tr>
[END table]
<tr>
<td>
{lang_ip}
</td>
<td>
{ip}
<input type="text" name="ip" value="{ip}">
</td>
</tr>
[BLOCK table AS subnet]
@@ -31,7 +46,7 @@
<td>
<select name="subnet_id">
[BLOCK subnetrow]
<option value="{subnet_id}" {selected}>{subnet_address}/{subnet_mask}</option>
<option value="{subnet_id}" {subnet_selected}>{subnet_address}/{subnet_mask}</option>
[END subnetrow]
</select>
</td>
@@ -69,10 +84,6 @@
<textarea name="node_info">{node_info}</textarea>
</td>
</tr>
<tr>
<td colspan="2" align="right">
<input type="submit" value="{lang_submit}"><input type="reset" value="{lang_reset}">
</td>
</tr>
</table>
</form>