blob: 714d44a5a8aef8bd9c45de5334fda2df5b4826cc [file] [log] [blame]
<!-- Device partial HTML -->
<div id="ov-device">
<h2>Device View</h2>
<!-- TODO: uncomment and test the thead and tbody tags for CSS styling -->
<table class="summary-list">
<!-- <thead> -->
<tr>
<th></th>
<th>ID</th>
<th>Manufacturer</th>
<th>Hardware Version</th>
<th>Software Version</th>
</tr>
<!-- </thead> -->
<!-- <tbody> -->
<tr ng-repeat="dev in ctrl.deviceData">
<td><div icon icon-id="{{dev._iconid_available}}"></div></td>
<td>{{dev.id}}</td>
<td>{{dev.mfr}}</td>
<td>{{dev.hw}}</td>
<td>{{dev.sw}}</td>
<!-- add more property fields for table from device data -->
</tr>
<!-- </tbody> -->
</table>
</div>