blob: 08b40ec00d3ccc33369a1fc88c233d8e5263690b [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>
Bri Prebilic Coledee46622015-02-03 16:36:11 -080010 <th>URI
11 <div class="inline-icon"
12 icon icon-id="tableColSortAsc"
13 icon-size="10">
14 </div>
15 </th>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080016 <th>Vendor</th>
17 <th>Hardware Version</th>
18 <th>Software Version</th>
19 <th>Serial Number</th>
20 <th>Protocol</th>
21 </tr>
Bri Prebilic Cole9ca0f9c2015-01-29 15:44:20 -080022 </thead>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080023
Bri Prebilic Cole9ca0f9c2015-01-29 15:44:20 -080024 <tbody>
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080025 <tr ng-repeat="dev in ctrl.deviceData">
26 <td><div icon icon-id="{{dev._iconid_available}}"></div></td>
27 <td>{{dev.id}}</td>
28 <td>{{dev.mfr}}</td>
29 <td>{{dev.hw}}</td>
30 <td>{{dev.sw}}</td>
31 <td>{{dev.serial}}</td>
32 <td>{{dev.annotations.protocol}}</td>
33 </tr>
34 </tbody>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080035 </table>
36
37</div>