Files
netdisco/Netdisco/share/views/ajax/report/portutilization.tt
2014-01-26 13:35:53 +00:00

24 lines
773 B
Plaintext

<table class="table table-bordered table-condensed table-hover nd_floatinghead">
<thead>
<tr>
<th>Device</th>
<th class="nd_center-cell">Total Ports</th>
<th class="nd_center-cell">In Use</th>
<th class="nd_center-cell">Shutdown</th>
<th class="nd_center-cell">Free</th>
</tr>
</thead>
</tbody>
[% WHILE (row = results.next) %]
<tr>
<td><a href="[% device_ports %]&[% row.qstr %]">[% row.dns || row.ip | html_entity %]</a></td>
<td class="nd_center-cell">[% row.port_count %]</td>
<td class="nd_center-cell">[% row.ports_in_use %]</td>
<td class="nd_center-cell">[% row.ports_shutdown %]</td>
<td class="nd_center-cell">[% row.ports_free %]</td>
</tr>
[% END %]
</tbody>
</table>