IP Reg is a IPAM tool to keep track of assets, nodes (IP addresses, MAC addresses, DNS aliases) within different subnets, over different locations or even VLAN's. Written in PHP, used with a MySQL-database to have a unique insight in your local network.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
ipreg/tpl/subnetedit.tpl

115 lines
2.7 KiB

<form method="POST" action="subnet.php">
{if $action eq constant('ACT_EDIT')}
<input type="hidden" name="id" value="{$subnet->id}">
{/if}
<table class="title">
<tr>
<td class="header">
<img class="icon" src="images/plugin.png" alt="" />
{if $action eq constant('ACT_ADD')}
{$lang_subnet_add}
{else}
{$lang_subnet_edit} : {$subnet->address}/{$subnet->mask}
{/if}
</td>
<td align="right">
<a href="#" onClick="history.go(-1)"><img src="images/rewind.png" alt="{$lang_cancel}"{if $suser_tooltips} title="{$lang_cancel}"{/if}></a>
{if $action eq constant('ACT_ADD')}
<input type="image" name="submit[insert]" src="images/save.png" alt="{$lang_submit}"{if $suser_tooltips} title="{$lang_submit}"{/if}>
{else}
<input type="image" name="submit[update]" src="images/save.png" alt="{$lang_submit}"{if $suser_tooltips} title="{$lang_submit}"{/if}>
{/if}
</td>
</tr>
</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}
</td>
<td class="value">
<input type="text" name="subnet_address" value="{$subnet->address}" autofocus>
</td>
</tr>
<tr>
<td class="label">
{$lang_subnet_mask}
</td>
<td class="value">
<input type="text" name="subnet_mask" size="2" value="{$subnet->mask}">&nbsp;(8-30)
</td>
</tr>
<tr>
<td class="label">
{$lang_proto_vers}
</td>
<td class="value">
<input type="text" name="subnet_proto_vers" size="2" value="{$subnet->proto_vers}">
</td>
</tr>
<tr>
<td class="label">
{$lang_subnet_dhcpstart}
</td>
<td class="value">
<input type="text" name="dhcp_start" size="15" value="{$subnet->dhcp_start}">
</td>
</tr>
<tr>
<td class="label">
{$lang_subnet_dhcpend}
</td>
<td class="value">
<input type="text" name="dhcp_end" size="15" value="{$subnet->dhcp_end}">
</td>
</tr>
<tr>
<td class="label">
NTP Server
</td>
<td class="value">
<input type="text" name="ntp_server" size="45" value="{$subnet->ntp_server}">
</td>
</tr>
<tr>
<td class="label">
{$lang_subnet_info}
</td>
<td class="value">
<textarea name="subnet_info" cols="30" rows="10">{$subnet->info}</textarea>
</td>
</tr>
</table>
{if $action eq constant('ACT_ADD')}
<table class="info">
<tr>
<td class="header">
{$lang_vlan}
</td>
<td class="header_right">
&nbsp;
</td>
</tr>
<tr>
<td class="label">
{$lang_vlan}
</td>
<td class="value">
{html_options name=vlan_id options=$vlan_options}
</td>
</tr>
</table>
{/if}
</form>