• This project
    • Loading...
  • Sign in

홍길동 / onos

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • onos
  • ..
  • device
  • device.html
  • Bri Prebilic Cole's avatar
    GUI -- Created initial device view · 7c92a3d0 ...
    7c92a3d0
    Change-Id: Ie9b2a4e743d7a8070c3dfe736ad5a953547bd2f9
    Bri Prebilic Cole authored 2015-01-09 16:50:03 -0800
device.html 373 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<!-- 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>