blob: a6fd64017e364dadce69636a98f967d4f53f06a5 [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>
4
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08005 <table class="summary-list">
6 <tr>
Simon Hunt97225382015-01-19 13:33:09 -08007 <th></th>
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08008 <th>ID</th>
9 <th>Manufacturer</th>
10 <th>Hardware Version</th>
11 <th>Software Version</th>
12 </tr>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080013 <tr ng-repeat="dev in ctrl.deviceData">
Simon Hunt97225382015-01-19 13:33:09 -080014 <td><div icon icon-id="{{dev._iconid_available}}"></div></td>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080015 <td>{{dev.id}}</td>
16 <td>{{dev.mfr}}</td>
17 <td>{{dev.hw}}</td>
18 <td>{{dev.sw}}</td>
Simon Hunt97225382015-01-19 13:33:09 -080019 <!-- add more property fields for table from device data -->
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080020 </tr>
21 </table>
22
23</div>