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.
52 lines
1.3 KiB
52 lines
1.3 KiB
<form method="POST" action="subnet.php">
|
|
<input type="hidden" name="id" value="{$subnet->id}">
|
|
|
|
<table class="title">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_subnet_del}
|
|
</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>
|
|
<input type="image" name="submit[delete]" src="images/delete.png" alt="{$lang_submit}"{if $suser_tooltips} title="{$lang_submit}"{/if}>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_subnet}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnet_subnetaddress}/{$lang_subnet_mask}
|
|
</td>
|
|
<td class="value">
|
|
<a href="subnet.php?f=view&id={$subnet->id}">{$subnet->address}/{$subnet->mask}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{if $nodes}
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header" colspan="2">
|
|
<img src="image.php?icon=comment" alt="{$lang_comments}"> {$lang_comments_asset_del_nodes}
|
|
</td>
|
|
</tr>
|
|
{foreach item=node from=$nodes}
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_ip}
|
|
</td>
|
|
<td class="value">
|
|
<a href="node.php?f=view&id={$node.id}">{$node.ip}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
{/if}
|
|
|
|
</form>
|
|
|