blob: 714d44a5a8aef8bd9c45de5334fda2df5b4826cc [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 Colec006eef2015-01-20 11:42:05 -08006 <!-- <thead> -->
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08007 <tr>
Simon Hunt97225382015-01-19 13:33:09 -08008 <th></th>
Bri Prebilic Cole4fab8af2015-01-15 16:40:47 -08009 <th>ID</th>
10 <th>Manufacturer</th>
11 <th>Hardware Version</th>
12 <th>Software Version</th>
13 </tr>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080014 <!-- </thead> -->
15
16 <!-- <tbody> -->
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080017 <tr ng-repeat="dev in ctrl.deviceData">
Simon Hunt97225382015-01-19 13:33:09 -080018 <td><div icon icon-id="{{dev._iconid_available}}"></div></td>
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080019 <td>{{dev.id}}</td>
20 <td>{{dev.mfr}}</td>
21 <td>{{dev.hw}}</td>
22 <td>{{dev.sw}}</td>
Simon Hunt97225382015-01-19 13:33:09 -080023 <!-- add more property fields for table from device data -->
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080024 </tr>
Bri Prebilic Colec006eef2015-01-20 11:42:05 -080025 <!-- </tbody> -->
Bri Prebilic Cole7c92a3d2015-01-09 16:50:03 -080026 </table>
27
28</div>