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.
57 lines
1.3 KiB
57 lines
1.3 KiB
<form method="POST" action="asset.php">
|
|
<input type="hidden" name="id" value="{$asset_id}">
|
|
|
|
<table class="title">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_asset_del}
|
|
</td>
|
|
<td align="right">
|
|
<a href="#" onClick="history.go(-1)"><img src="image.php?icon=cancel" alt="{$lang_cancel}" {if $suser_tooltips}title="{$lang_cancel}" {/if}/></a>
|
|
<input type="image" name="submit[delete]" src="images/bin.png" alt="{$lang_asset_del}" {if $suser_tooltips}title="{$lang_asset_del}" {/if}/>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</form>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_asset}
|
|
</td>
|
|
<td class="header_right">
|
|
|
|
</td>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_asset_name}
|
|
</td>
|
|
<td class="value">
|
|
<a href="asset.php?f=view&id={$asset_id}">{$asset_name}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{if $nodes|@count}
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
<img src="image.php?icon=error" alt="{$lang_warning}">
|
|
</td>
|
|
<td class="header_right">
|
|
{$lang_comments_asset_del_nodes}
|
|
</td>
|
|
</tr>
|
|
{foreach item=node from=$nodes}
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_ip}
|
|
</td>
|
|
<td class="value">
|
|
<a href="nodeview.php?node_id={$node.node_id}">{$node.node_ip}</a>
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table>
|
|
{/if}
|
|
|