blob: a83f5e78714237293978f0082a435ac4ee04acaf [file] [log] [blame]
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -08001<!-- Device partial HTML -->
2<div id="ov-device">
3 <h2>Device View</h2>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -08004<!-- TODO: uncomment and test the thead and tbody tags for CSS styling -->
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08005 <table class="summary-list">
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -08006 <tbody>
7 <tr>
8 <th></th>
9 <th>URI</th>
10 <th>Vendor</th>
11 <th>Hardware Version</th>
12 <th>Software Version</th>
13 <th>Serial Number</th>
14 <th>Protocol</th>
15 </tr>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080016
Bri Prebilic Cole4f0d9772015-01-21 16:45:14 -080017 <tr ng-repeat="dev in ctrl.deviceData">
18 <td><div icon icon-id="{{dev._iconid_available}}"></div></td>
19 <td>{{dev.id}}</td>
20 <td>{{dev.mfr}}</td>
21 <td>{{dev.hw}}</td>
22 <td>{{dev.sw}}</td>
23 <td>{{dev.serial}}</td>
24 <td>{{dev.annotations.protocol}}</td>
25 </tr>
26 </tbody>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080027 </table>
28
29</div>