summaryrefslogtreecommitdiffstats
path: root/vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html
diff options
context:
space:
mode:
Diffstat (limited to 'vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html')
-rw-r--r--vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html b/vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html
new file mode 100644
index 000000000..ad24bce14
--- /dev/null
+++ b/vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html
@@ -0,0 +1,28 @@
+<div ng-controller="InventoryTableController">
+ <md-button ng-click="addVppShowForm()">Mount VPP</md-button>
+ <md-button ng-click="getVppList()">Reload VPPs</md-button>
+ <table class="footable">
+ <thead>
+ <tr>
+ <th>VPP Name</th>
+ <th>IP Address</th>
+ <th>Port</th>
+ <th>Connection Status</th>
+ <th>Actions</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr ng-repeat="vpp in vppList">
+ <td>{{vpp.name}}</td>
+ <td>{{vpp.ipAddress}}</td>
+ <td>{{vpp.port}}</td>
+ <td>{{vpp.status}}</td>
+ <td>
+ <md-button ng-click="viewTopology(vpp)">View Topology</md-button>
+ <md-button ng-click="editVppShowForm(vpp)" ng-hide="vpp.status === 'connected'">Edit</md-button>
+ <md-button ng-click="deleteVpp(vpp)" >Delete</md-button>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+</div> \ No newline at end of file