SSID Inventory templates are no longer needed

This commit is contained in:
Eric A. Miller
2014-02-15 23:28:25 -05:00
parent 9030aec6fa
commit 1a3267fef5
2 changed files with 0 additions and 31 deletions

View File

@@ -1,20 +0,0 @@
[% USE Number.Format %]
<table class="table table-bordered table-condensed table-striped nd_floatinghead">
<thead>
<tr>
<th class="nd_center-cell">SSID</th>
<th class="nd_center-cell">Broadcast</th>
<th class="nd_center-cell">Count</th>
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
<tr>
<td class="nd_center-cell">[% row.ssid %]</td>
<td class="nd_center-cell">[% row.broadcast ? 'Yes' : 'No' %]</td>
<td class="nd_center-cell">[% row.get_column('scount') | format_number %]</td>
</tr>
[% END %]
</tbody>
</table>

View File

@@ -1,11 +0,0 @@
[% USE CSV -%]
[% CSV.dump([ 'SSID' 'Broadcast' 'Count' ]) %]
[% WHILE (row = results.next) %]
[% mylist = [] %]
[% mylist.push(row.ssid) %]
[% mylist.push(row.broadcast ? 'Yes' : 'No') %]
[% mylist.push(row.get_column('scount')) %]
[% CSV.dump(mylist) %]
[% END %]