working vlan search!!

This commit is contained in:
Oliver Gorwits
2012-01-07 18:06:04 +00:00
parent e9470a14f3
commit 3aa0a56de5
2 changed files with 43 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<table class="bordered-table condensed-table zebra-striped">
<thead>
<tr>
[% FOREACH col IN columns %]
<th>[% col.label %]</th>
[% END %]
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
<tr>
[% FOREACH col IN columns %]
[% SET val = row %]
[% FOREACH method IN col.key %]
[% SET val = val.$method %]
[% END %]
<td>[% val %]</td>
[% END %]
</tr>
[% END %]
</tbody>
</table>