blob: 5ebc9aee7a648f456cd984af63ffc8b267c129e2 [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>
5 </div>
6
Thomas Vachuskae586b792015-03-26 13:59:38 -07007 <table class="summary-list"
8 onos-fixed-header
9 onos-sortable-header
Bri Prebilic Cole72eb6db2015-03-30 16:58:53 -070010 sort-callback="sortCallback(requestParams)">
Thomas Vachuskae586b792015-03-26 13:59:38 -070011 <thead>
12 <tr>
Thomas Vachuska58eded62015-03-31 12:04:03 -070013 <th colId="type" class="table-icon" sortable></th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070014 <th colId="id" sortable>Host ID </th>
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -070015 <th colId="mac" sortable>MAC Address </th>
16 <th colId="vlan" sortable>VLAN ID </th>
17 <th colId="ips" sortable>IP Addresses </th>
18 <th colId="location" sortable>Location </th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070019 </tr>
20 </thead>
21
22 <tbody>
Simon Hunt0c2c4c52015-04-02 17:42:45 -070023 <tr ng-hide="ctrl.tableData.length">
24 <td class="nodata" colspan="6">
25 No Hosts found
26 </td>
27 </tr>
28
29 <tr ng-repeat="host in ctrl.tableData"
30 ng-repeat-done>
31 <td class="table-icon">
32 <div icon icon-id="{{host._iconid_type}}"></div>
33 </td>
34 <td>{{host.id}}</td>
35 <td>{{host.mac}}</td>
36 <td>{{host.vlan}}</td>
37 <td>{{host.ips}}</td>
38 <td>{{host.location}}</td>
39 </tr>
Thomas Vachuskae586b792015-03-26 13:59:38 -070040 </tbody>
41 </table>
Thomas Vachuskae586b792015-03-26 13:59:38 -070042</div>