device.html 1.08 KB
<!-- Device partial HTML -->
<div id="ov-device">
    <h2>Devices</h2>
    <table class="summary-list"
           onos-fixed-header
           ng-style="setTableHW()">
        <thead>
            <tr>
                <th></th>
                <th>URI
                    <div class="inline-icon"
                         icon icon-id="tableColSortAsc"
                         icon-size="10">
                    </div>
                </th>
                <th>Vendor</th>
                <th>Hardware Version</th>
                <th>Software Version</th>
                <th>Serial Number</th>
                <th>Protocol</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>
                <td>{{dev.serial}}</td>
                <td>{{dev.annotations.protocol}}</td>
            </tr>
        </tbody>
    </table>

</div>