blob: 9f704324b8bc7e089d7825197bbd70af0fa42ca1 [file] [log] [blame]
Thomas Vachuskae586b792015-03-26 13:59:38 -07001<!-- Host partial HTML -->
2<div id="ov-host">
Bri Prebilic Cole45069382015-04-14 15:21:38 -07003 <div class="tabular-header">
4 <h2>Hosts ({{ctrl.tableData.length}} total)</h2>
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -07005 <div class="ctrl-btns">
6 <div class="refresh active"
Bri Prebilic Cole43f17c02015-05-01 10:43:38 -07007 icon icon-size="36" icon-id="refresh"
Bri Prebilic Cole3d4d01c2015-04-30 13:48:36 -07008 ng-click="refresh()"></div>
9 </div>
Bri Prebilic Cole45069382015-04-14 15:21:38 -070010 </div>
11
Thomas Vachuskae586b792015-03-26 13:59:38 -070012 <table class="summary-list"
13 onos-fixed-header
14 onos-sortable-header
Bri Prebilic Cole72eb6db2015-03-30 16:58:53 -070015 sort-callback="sortCallback(requestParams)">
Thomas Vachuskae586b792015-03-26 13:59:38 -070016 <thead>
17 <tr>
Thomas Vachuska58eded62015-03-31 12:04:03 -070018 <th colId="type" class="table-icon" sortable></th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070019 <th colId="id" sortable>Host ID </th>
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -070020 <th colId="mac" sortable>MAC Address </th>
21 <th colId="vlan" sortable>VLAN ID </th>
22 <th colId="ips" sortable>IP Addresses </th>
23 <th colId="location" sortable>Location </th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070024 </tr>
25 </thead>
26
27 <tbody>
Simon Hunt0c2c4c52015-04-02 17:42:45 -070028 <tr ng-hide="ctrl.tableData.length">
29 <td class="nodata" colspan="6">
30 No Hosts found
31 </td>
32 </tr>
33
34 <tr ng-repeat="host in ctrl.tableData"
35 ng-repeat-done>
36 <td class="table-icon">
37 <div icon icon-id="{{host._iconid_type}}"></div>
38 </td>
39 <td>{{host.id}}</td>
40 <td>{{host.mac}}</td>
41 <td>{{host.vlan}}</td>
42 <td>{{host.ips}}</td>
43 <td>{{host.location}}</td>
44 </tr>
Thomas Vachuskae586b792015-03-26 13:59:38 -070045 </tbody>
46 </table>
Thomas Vachuskae586b792015-03-26 13:59:38 -070047</div>