blob: 72e4d6db0d67e6c4c5b785c78a06073e0f836c13 [file] [log] [blame]
Thomas Vachuskae586b792015-03-26 13:59:38 -07001<!-- Host partial HTML -->
2<div id="ov-host">
Bri Prebilic Cole864cdd62015-04-02 15:46:47 -07003 <h2>Hosts ({{ctrl.tableData.length}} total)</h2>
Thomas Vachuskae586b792015-03-26 13:59:38 -07004 <table class="summary-list"
5 onos-fixed-header
6 onos-sortable-header
Bri Prebilic Cole72eb6db2015-03-30 16:58:53 -07007 sort-callback="sortCallback(requestParams)">
Thomas Vachuskae586b792015-03-26 13:59:38 -07008 <thead>
9 <tr>
Thomas Vachuska58eded62015-03-31 12:04:03 -070010 <th colId="type" class="table-icon" sortable></th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070011 <th colId="id" sortable>Host ID </th>
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -070012 <th colId="mac" sortable>MAC Address </th>
13 <th colId="vlan" sortable>VLAN ID </th>
14 <th colId="ips" sortable>IP Addresses </th>
15 <th colId="location" sortable>Location </th>
Thomas Vachuskae586b792015-03-26 13:59:38 -070016 </tr>
17 </thead>
18
19 <tbody>
Bri Prebilic Cole864cdd62015-04-02 15:46:47 -070020 <tr ng-repeat="host in ctrl.tableData"
Thomas Vachuskae586b792015-03-26 13:59:38 -070021 ng-repeat-done>
Thomas Vachuska58eded62015-03-31 12:04:03 -070022 <td class="table-icon">
23 <div icon icon-id="{{host._iconid_type}}"></div>
24 </td>
Thomas Vachuskae586b792015-03-26 13:59:38 -070025 <td>{{host.id}}</td>
Bri Prebilic Cole19a32dd2015-03-26 18:00:03 -070026 <td>{{host.mac}}</td>
27 <td>{{host.vlan}}</td>
28 <td>{{host.ips}}</td>
29 <td>{{host.location}}</td>
Thomas Vachuskae586b792015-03-26 13:59:38 -070030 </tr>
31 </tbody>
32 </table>
33
34</div>