aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html')
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html54
1 files changed, 0 insertions, 54 deletions
diff --git a/framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html b/framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html
deleted file mode 100644
index 19a7ee1d..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/app/view/host/host.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!-- Host partial HTML -->
-<div id="ov-host">
- <div class="tabular-header">
- <h2>Hosts ({{tableData.length}} total)</h2>
- <div class="ctrl-btns">
- <div class="refresh" ng-class="{active: autoRefresh}"
- icon icon-size="36" icon-id="refresh"
- tooltip tt-msg="autoRefreshTip"
- ng-click="toggleRefresh()"></div>
- </div>
- </div>
-
- <div class="summary-list" onos-table-resize>
- <div ng-show="loading" class="loading-wheel"
- icon icon-id="loading" icon-size="75"></div>
-
- <div class="table-header" onos-sortable-header>
- <table>
- <tr>
- <td colId="type" class="table-icon" sortable></td>
- <td colId="id" sortable>Host ID </td>
- <td colId="mac" sortable>MAC Address </td>
- <td colId="vlan" sortable>VLAN ID </td>
- <td colId="ips" sortable>IP Addresses </td>
- <td colId="location" sortable>Location </td>
- </tr>
- </table>
- </div>
-
- <div class="table-body">
- <table onos-flash-changes id-prop="id">
- <tr ng-if="!tableData.length" class="no-data">
- <td colspan="6">
- No Hosts found
- </td>
- </tr>
-
- <tr ng-repeat="host in tableData track by $index"
- ng-repeat-complete row-id="{{host.id}}">
- <td class="table-icon">
- <div icon icon-id="{{host._iconid_type}}"></div>
- </td>
- <td>{{host.id}}</td>
- <td>{{host.mac}}</td>
- <td>{{host.vlan}}</td>
- <td>{{host.ips}}</td>
- <td>{{host.location}}</td>
- </tr>
- </table>
- </div>
-
- </div>
-
-</div>