Files
netdisco/Netdisco/share/views/ajax/report/apchanneldist.tt
2013-09-18 23:50:27 -04:00

19 lines
473 B
Plaintext

[% INCLUDE "download_as.tt" %]
<table class="table table-bordered table-condensed table-striped nd_floatinghead">
<thead>
<tr>
<th class="nd_center-cell">Channel</th>
<th class="nd_center-cell">Count</th>
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
<tr>
<td class="nd_center-cell">[% row.channel %]</td>
<td class="nd_center-cell">[% row.get_column('ch_count') %]</td>
</tr>
[% END %]
</tbody>
</table>