blob: 7aaf8db00dd1ad0c1d0e700946d10fe5a673fd2d [file] [log] [blame]
<!-- Device partial HTML -->
<div id="ov-device">
<h2>Devices</h2>
<table class="summary-list"
onos-fixed-header
ng-style="setTableHW()">
<thead>
<tr>
<th colId="available"></th>
<th colId="id">URI
<div class="inline-icon"
icon icon-id="tableColSortAsc"
icon-size="10">
</div>
</th>
<th colId="mfr">Vendor</th>
<th colId="hw">Hardware Version</th>
<th colId="sw">Software Version</th>
<th colId="serial">Serial Number</th>
<th colId="protocol">Protocol</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="dev in ctrl.deviceData">
<td><div icon icon-id="{{dev._iconid_available}}"></div></td>
<td>{{dev.id}}</td>
<td>{{dev.mfr}}</td>
<td>{{dev.hw}}</td>
<td>{{dev.sw}}</td>
<td>{{dev.serial}}</td>
<td>{{dev.annotations.protocol}}</td>
</tr>
</tbody>
</table>
</div>