Make use of Yapter Template Engine
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
<table border="0">
|
||||
<tr>
|
||||
<td>
|
||||
<b>{lang_location_name}:</b>
|
||||
</td>
|
||||
<td>
|
||||
[BLOCK table AS locationcrumb]
|
||||
[BLOCK locationcrumbrow]
|
||||
{seperator}<a href="locationview.php?location_id={location_id}">{location_name}</a>
|
||||
[END locationcrumbrow]
|
||||
[END table]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>{lang_location_info}:</b>
|
||||
</td>
|
||||
<td>
|
||||
{location_info}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>{lang_subnets}:</b>
|
||||
</td>
|
||||
[BLOCK table AS subnet]
|
||||
<td>
|
||||
[BLOCK subnetrow]
|
||||
<a href="subnetview.php?subnet_id={subnet_id}">{subnet_address}/{subnet_mask}</a><br>
|
||||
[END subnetrow]
|
||||
</td>
|
||||
[END table]
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<b>{lang_sublocations}:</b>
|
||||
</td>
|
||||
[BLOCK table AS sublocation]
|
||||
<td>
|
||||
[BLOCK sublocationrow]
|
||||
<a href="locationview.php?location_id={sublocation_id}">{sublocation_name}</a><br>
|
||||
[END sublocationrow]
|
||||
</td>
|
||||
[END table]
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p>
|
||||
|
||||
<table border="0">
|
||||
[BLOCK assignlocationtosubnet]
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/arrow.gif" border="0"> <a href="assignlocationtosubnet.php?location_id={location_id}">{lang_assignlocationtosubnet}</a>
|
||||
</td>
|
||||
</tr>
|
||||
[END assignlocationtosubnet]
|
||||
[BLOCK locationedit]
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/arrow.gif" border="0"> <a href="locationedit.php?location_id={location_id}">{lang_location_edit}</a>
|
||||
</td>
|
||||
</tr>
|
||||
[END locationedit]
|
||||
[BLOCK locationdel]
|
||||
<tr>
|
||||
<td>
|
||||
<img src="images/arrow.gif" border="0"> <a href="locationdel.php?location_id={location_id}">{lang_location_del}</a>
|
||||
</td>
|
||||
</tr>
|
||||
[END locationdel]
|
||||
</table>
|
||||
Reference in New Issue
Block a user