device.html 829 Bytes
<!-- Device partial HTML -->
<div id="ov-device">
    <h2>Device View</h2>
    <table class="summary-list">
        <tbody>
            <tr>
                <th></th>
                <th>URI</th>
                <th>Vendor</th>
                <th>Hardware Version</th>
                <th>Software Version</th>
                <th>Serial Number</th>
                <th>Protocol</th>
            </tr>

            <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>
                <td>{{dev.serial}}</td>
                <td>{{dev.annotations.protocol}}</td>
            </tr>
        </tbody>
    </table>

</div>