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.html41
1 files changed, 0 insertions, 41 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
deleted file mode 100644
index ab62c75c3..000000000
--- a/vbd/gui/module/src/main/resources/vpp/views/inventory-table.tpl.html
+++ /dev/null
@@ -1,41 +0,0 @@
-<div ng-controller="InventoryTableController">
- <div layout="row" flex="100" layout-margin>
- <div class="md-whiteframe-z2 flex">
- <md-content layout-padding>
- <div style="float: left">
- <h3>VPP List</h3>
- </div>
- <div style="float: right">
- <md-button ng-click="addVppShowForm()" class="md-raised">Mount VPP</md-button>
- <md-button ng-click="getVppList()" class="md-raised">Reload VPPs</md-button>
- </div>
-
- <table st-table="displayVppList" st-safe-src="vppList" class="table table-striped">
- <thead>
- <tr>
- <th st-sort="name" class="interactive">VPP Name</th>
- <th st-sort="ipAddress" class="interactive">IP Address</th>
- <th st-sort="port" class="interactive">Port</th>
- <th st-sort="status" class="interactive">Connection Status</th>
- <th>Actions</th>
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="vpp in displayVppList">
- <td>{{vpp.name}}</td>
- <td>{{vpp.ipAddress}}</td>
- <td>{{vpp.port}}</td>
- <td>{{vpp.status}}</td>
- <td>
- <!--<md-button ng-click="viewTopology(vpp)" class="md-accent">View Topology</md-button>-->
- <md-button ng-click="selectVpp(vpp); setMainView('inventoryDetail')" >Detail</md-button>
- <md-button ng-click="editVppShowForm(vpp)" ng-disabled="vpp.status === 'connected'" class="md-accent">Edit</md-button>
- <md-button ng-click="deleteVpp(vpp)" class="md-accent">Delete</md-button>
- </td>
- </tr>
- </tbody>
- </table>
- </md-content>
- </div>
- </div>
-</div> \ No newline at end of file
='n234' href='#n234'>234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342