blob: 754aae9466ec579a8761b6e427a4a5cde713acd5 [file] [log] [blame]
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -08001<!-- Device partial HTML -->
2<div id="ov-device">
Bri Prebilic Colee4d5c6c2015-02-02 15:52:45 -08003 <h2>Devices</h2>
4 <table class="summary-list"
5 onos-fixed-header
6 ng-style="setTableHW()">
Bri Prebilic Cole9ca0f9c2015-01-29 15:44:20 -08007 <thead>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -08008 <tr>
9 <th></th>
10 <th>URI</th>
11 <th>Vendor</th>
12 <th>Hardware Version</th>
13 <th>Software Version</th>
14 <th>Serial Number</th>
15 <th>Protocol</th>
16 </tr>
Bri Prebilic Cole9ca0f9c2015-01-29 15:44:20 -080017 </thead>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080018
Bri Prebilic Cole9ca0f9c2015-01-29 15:44:20 -080019 <tbody>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080020 <tr ng-repeat="dev in ctrl.deviceData">
21 <td><div icon icon-id="{{dev._iconid_available}}"></div></td>
22 <td>{{dev.id}}</td>
23 <td>{{dev.mfr}}</td>
24 <td>{{dev.hw}}</td>
25 <td>{{dev.sw}}</td>
26 <td>{{dev.serial}}</td>
27 <td>{{dev.annotations.protocol}}</td>
28 </tr>
29 </tbody>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080030 </table>
31
32</div>