device.html
373 Bytes
<!-- Device partial HTML -->
<div id="ov-device">
<h2>Device View</h2>
<table>
<tr ng-repeat="dev in ctrl.deviceData">
<!-- add more property fields for table from device data -->
<td>{{dev.id}}</td>
<td>{{dev.mfr}}</td>
<td>{{dev.hw}}</td>
<td>{{dev.sw}}</td>
</tr>
</table>
</div>