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.
96 lines
2.4 KiB
96 lines
2.4 KiB
<table class="title">
|
|
<tr>
|
|
<td class="header">
|
|
<img class="icon" src="images/building.png" alt="" />
|
|
{$location->name}
|
|
</td>
|
|
<td align="right">
|
|
{if $suser_add}
|
|
<a href="locationadd.php?location_parent={$location->id}"><img src="images/building_add.png" alt="{$lang_sublocation_add}"></a>
|
|
{/if}
|
|
{if $suser_edit}
|
|
<a href="locationedit.php?location_id={$location->id}"><img src="images/building_edit.png" alt="{$lang_location_edit}"></a>
|
|
{/if}
|
|
{if $suser_del}
|
|
<a href="locationdel.php?location_id={$location->id}"><img src="images/building_delete.png" alt="{$lang_location_del}"></a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_location}
|
|
</td>
|
|
<td class="header_right">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_location_name}
|
|
</td>
|
|
<td class="value">
|
|
<ol id="breadcrumbs">
|
|
{foreach item=breadcrumb from=$crumbs name=breadcrumbs}
|
|
<li{if $smarty.foreach.breadcrumbs.first} class="first"{/if}><a href="{$breadcrumb->url}">{$breadcrumb->name}</a></li>
|
|
{/foreach}
|
|
</ol>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_location_info}
|
|
</td>
|
|
<td class="value">
|
|
{$location->info}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_sublocation}
|
|
</td>
|
|
<td class="header_right">
|
|
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_sublocations} ({$sublocations|@count})
|
|
</td>
|
|
<td class="value">
|
|
{foreach item=sublocation from=$sublocations}
|
|
<a href="locationview.php?location_id={$sublocation.sublocation_id}">{$sublocation.sublocation_name}</a>
|
|
{$sublocation.info_short}{if $sublocation.info_length>40}…{/if}
|
|
<br>
|
|
{/foreach}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table class="info">
|
|
<tr>
|
|
<td class="header">
|
|
{$lang_subnet}
|
|
</td>
|
|
<td class="header_right">
|
|
{if $suser_edit}
|
|
<a href="locationsubnetedit.php?location_id={$location->id}"><img src="image.php?icon=edit" alt="{$lang_locationsubnet_edit}"></a>
|
|
{/if}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="label">
|
|
{$lang_subnets} ({$subnets|@count})
|
|
</td>
|
|
<td class="value">
|
|
{foreach item=subnet from=$subnets}
|
|
<a href="subnetview.php?subnet_id={$subnet.subnet_id}">{$subnet.subnet_address}/{$subnet.subnet_mask}</a><br>
|
|
{/foreach}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|