Fixed search links
This commit is contained in:
parent
05e85db3a7
commit
7e73d8efbc
|
@ -35,7 +35,7 @@
|
||||||
{foreach item=asset from=$assets}
|
{foreach item=asset from=$assets}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="assetview.php?asset_id={$asset.id}">{$asset.name}</a>
|
<a href="asset.php?f=view&id={$asset.id}">{$asset.name}</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
{$asset.description}
|
{$asset.description}
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
{foreach item=location from=$locations}
|
{foreach item=location from=$locations}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="locationview.php?location_id={$location.id}">{$location.name}</a>
|
<a href="location.php?f=view&id={$location.id}">{$location.name}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
@ -75,7 +75,7 @@
|
||||||
{foreach item=node from=$nodes}
|
{foreach item=node from=$nodes}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="nodeview.php?node_id={$node.id}">{$node.ip}</a>
|
<a href="node.php?f=view&id={$node.id}">{$node.ip}</a>
|
||||||
</td>
|
</td>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
{$node.info}
|
{$node.info}
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
{foreach item=subnet from=$subnets}
|
{foreach item=subnet from=$subnets}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="subnetview.php?subnet_id={$subnet.id}">{$subnet.address}</a>
|
<a href="subnet.php?f=view&id={$subnet.id}">{$subnet.address}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
@ -112,7 +112,7 @@
|
||||||
{foreach item=vlan from=$vlans}
|
{foreach item=vlan from=$vlans}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="vlanview.php?vlan_id={$vlan.id}">{$vlan.name}</a>
|
<a href="vlan.php?f=view&id={$vlan.id}">{$vlan.name}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
@ -129,7 +129,7 @@
|
||||||
{foreach item=zone from=$zones}
|
{foreach item=zone from=$zones}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="value">
|
<td class="value">
|
||||||
<a href="zoneview.php?zone_id={$zone.id}">{$zone.origin}</a>
|
<a href="zone.php?f=view&id={$zone.id}">{$zone.origin}</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
|
Loading…
Reference in New Issue