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
+119 -61
View File
@@ -1,96 +1,154 @@
<form method="POST" action="submit.php">
<input type="hidden" name="add" value="node">
<table border="0" width="100%">
<table class="title">
<tr>
<td>
<b>{lang_node_add}:</b><br>
<td class="header">
{lang_node_add}
</td>
<td align="right">
<input type="image" src="images/save.gif" title="{lang_submit}">
<a href="#" onClick="history.go(-1)"><img src="image.php?icon=cancel" alt="{lang_cancel}"></a>
<input type="image" src="image.php?icon=save" alt="{lang_submit}">
</td>
</tr>
</table>
<p>
<table border="0">
<table class="info">
<tr>
<td>
{lang_asset_name}:
<td class="header">
{lang_node}
</td>
<td>
<input type="text" name="asset_name">
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td>
{lang_hostname}:
<td class="label">
{lang_ip}
</td>
<td>
<input type="text" name="hostname">
<td class="value">
<input type="text" name="node_ip" value="{node_ip}">
</td>
</tr>
<tr>
<td>
{lang_ip}:
<td class="label">
{lang_mac}
</td>
<td>
<input type="text" name="ip" value="{ip}">
</td>
</tr>
[BLOCK table AS subnet]
<tr>
<td>
{lang_subnet}:
</td>
<td>
<select name="subnet_id">
[BLOCK subnetrow]
<option value="{subnet_id}" {selected}>{subnet_address}/{subnet_mask}</option>
[END subnetrow]
</select>
</td>
</tr>
[END table]
[BLOCK table AS assetclass]
<tr>
<td>
{lang_assetclass}:
</td>
<td>
<select name="assetclass_id">
[BLOCK assetclassrow]
<option value="{assetclass_id}">{assetclass_name}</option>
[END assetclassrow]
</select>
</td>
</tr>
[END table]
<tr>
<td>
{lang_mac}:
</td>
<td>
<input type="text" name="mac">
<td class="value">
<input type="text" name="node_mac">
</td>
</tr>
<tr>
<td>
{lang_dns1}:
<td class="label">
{lang_dns1}
</td>
<td>
<input type="text" name="dns1">&nbsp;<input type="checkbox" name="dns1suffix" checked>{config_dns1suffix}
<td class="value">
<input type="text" name="node_dns1">&nbsp;<input type="checkbox" name="node_dns1suffix" checked>{user_dns1suffix}
</td>
</tr>
<tr>
<td>
{lang_dns2}:
<td class="label">
{lang_dns2}
</td>
<td>
<input type="text" name="dns2">&nbsp;<input type="checkbox" name="dns2suffix" checked>{config_dns2suffix}
<td class="value">
<input type="text" name="node_dns2">&nbsp;<input type="checkbox" name="dns2suffix" checked>{user_dns2suffix}
</td>
</tr>
<tr>
<td class="label">
{lang_node_info}
</td>
<td class="value">
<textarea name="node_info" cols="30" rows="10"></textarea>
</td>
</tr>
</table>
<p>
[BLOCK asset_table AS asset_table]
<table class="info">
<tr>
<td class="header">
{lang_asset}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{lang_asset_name}
</td>
<td class="value">
<input type="text" name="asset_name">
</td>
</tr>
<tr>
<td class="label">
{lang_asset_hostname}
</td>
<td class="value">
<input type="text" name="asset_hostname">
</td>
</tr>
</table>
[END asset_table]
<p>
[BLOCK assetclass_table AS assetclass_table]
<table class="info">
<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">
<select name="assetclass_id">
[BLOCK assetclass_row]
<option value="{assetclass_id}">{assetclass_name}</option>
[END assetclass_row]
</select>
</td>
</tr>
</table>
[END assetclass_table]
<p>
[BLOCK subnet_table AS subnet_table]
<table class="info">
<tr>
<td class="header">
{lang_subnet}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{lang_subnet_subnetaddress}/{lang_subnet_mask}
</td>
<td class="value">
<select name="subnet_id">
[BLOCK subnet_row]
<option value="{subnet_id}" {subnet_selected}>{subnet_address}/{subnet_mask}</option>
[END subnet_row]
</select>
</td>
</tr>
</table>
[END subnet_table]
</form>