summaryrefslogtreecommitdiffstats
path: root/vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html
diff options
context:
space:
mode:
Diffstat (limited to 'vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html')
-rw-r--r--vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html99
1 files changed, 0 insertions, 99 deletions
diff --git a/vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html b/vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html
deleted file mode 100644
index a5a5dc5d7..000000000
--- a/vbd/gui/module/src/main/resources/vpp/views/inventory-detail.tpl.html
+++ /dev/null
@@ -1,99 +0,0 @@
-<div ng-controller="InventoryDetailController">
- <div layout="row" layout-xs="column">
- <!-- Topology -->
- <div class="md-whiteframe-z2" flex="60" layout-margin>
- <md-content layout-padding>
- <h3>Vpp and Interfaces</h3>
- <div id="next-vpp-topo"></div>
- </md-content>
- </div>
-
- <!-- right aligned detail -->
- <div class="md-sidenav-left md-whiteframe-z2" flex layout-margin>
- <md-content layout-padding>
- <div style="float: left">
- <h3>VPP Detail</h3>
- </div>
- <div style="float: right">
- <md-button ng-click="setMainView('inventory')" class="md-raised">Back to VPP List</md-button>
- </div>
-
- <table class="table table-striped">
- <tbody>
- <tr>
- <td><b>VPP Name</b></td>
- <td>
- <md-select ng-model='selectedVpp' placeholder="Select VPP" ng-change="selectVpp(vpp)">
- <md-option ng-repeat="vpp in vppList" ng-value="vpp">{{vpp.name}}</md-option>
- </md-select>
- </td>
- </tr>
- <tr>
- <td><b>IP Address</b></td>
- <td>{{selectedVpp.ipAddress}}</td>
- </tr>
- <tr>
- <td><b>Port</b></td>
- <td>{{selectedVpp.port}}</td>
- </tr>
- <tr>
- <td><b>Connection Status</b></td>
- <td>{{selectedVpp.status}}</td>
- </tr>
- </tbody>
- </table>
-
- <div style="float: left">
- <h3>VXLAN Tunnel</h3>
- </div>
- <table st-table="displayInterfaceList" st-safe-src="selectedVpp.interfaces" class="table table-striped">
- <thead>
- <tr>
- <th st-sort="name" class="interactive">Name</th>
- <th st-sort="oper-status" class="interactive" >Oper Status</th>
- <th st-sort="admin-status" class="interactive">Admin Status</th>
- <th st-sort="'v3po:vxlan.src'" class="interactive">Source IP</th>
- <th st-sort="'v3po:vxlan.src'" class="interactive">Destination IP</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="interface in displayInterfaceList | filter: filterGetVxlanIf">
- <td>{{interface.name}}</td>
- <td>{{interface['admin-status']}}</td>
- <td>{{interface['phys-address']}}</td>
- <td>{{interface['v3po:vxlan'].src}}</td>
- <td>{{interface['v3po:vxlan'].dst}}</td>
- </tr>
- </tbody>
- </table>
- </md-content>
- </div>
- </div>
-
- <div layout="row" flex="100" layout-margin>
- <!-- interfaces list -->
- <div class="md-whiteframe-z2" flex="100">
- <md-content layout-padding>
- <h3>Interface list</h3>
- <table st-table="displayInterfaceList" st-safe-src="selectedVpp.interfaces" class="table table-striped">
- <thead>
- <tr>
- <th st-sort="name" class="interactive">Name</th>
- <th st-sort="oper-status" class="interactive" >Oper Status</th>
- <th st-sort="admin-status" class="interactive">Admin Status</th>
- <th st-sort="phys-address" class="interactive">MAC Address</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="interface in displayInterfaceList | filter: filterRemoveVxlanIf">
- <td>{{interface.name}}</td>
- <td>{{interface['oper-status']}}</td>
- <td>{{interface['admin-status']}}</td>
- <td>{{interface['phys-address']}}</td>
- </tr>
- </tbody>
- </table>
- </md-content>
- </div>
- </div>
-</div> \ No newline at end of file