summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/opnfv_testapi/ui/pods/pods.html
diff options
context:
space:
mode:
authorTrevor Bramwell <tbramwell@linuxfoundation.org>2017-11-21 00:46:35 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-11-21 00:46:35 +0000
commit174b299271189496bae4c4d6727ea26a7a098756 (patch)
treeb063e18c795988e38e1eb4afa74d4cbf9524f057 /utils/test/testapi/opnfv_testapi/ui/pods/pods.html
parentfd65ec9e84ae025e6b903c403514405ba0bb0a61 (diff)
parentf11f26d23dabde24b0bcd67ac81b094aa89eb6c9 (diff)
Merge "Remove 'utils/test' Directory and update INFO"
Diffstat (limited to 'utils/test/testapi/opnfv_testapi/ui/pods/pods.html')
-rw-r--r--utils/test/testapi/opnfv_testapi/ui/pods/pods.html76
1 files changed, 0 insertions, 76 deletions
diff --git a/utils/test/testapi/opnfv_testapi/ui/pods/pods.html b/utils/test/testapi/opnfv_testapi/ui/pods/pods.html
deleted file mode 100644
index 22f29347b..000000000
--- a/utils/test/testapi/opnfv_testapi/ui/pods/pods.html
+++ /dev/null
@@ -1,76 +0,0 @@
-<h3>Pods</h3>
-<p>This page is used to create or query pods.<br>
- Querying pods is open to everybody.<br>
- But only login users are granted the privilege to create the new pod.
-</p>
-
-<div class="row" style="margin-bottom:24px;"></div>
-
-<div class="pod-create" ng-class="{ 'hidden': ! auth.isAuthenticated }">
- <h4>Create</h4>
- <div class="row">
- <div ng-repeat="require in ctrl.createRequirements">
- <div class="create-pod" style="margin-left:24px;">
- <p class="input-group">
- <label for="cpid">{{require.label|capitalize}}: </label>
- <a ng-if="require.type == 'select'">
- <select dynamic-model="'ctrl.' + require.label" ng-options="option for option in require.selects"></select>
- </a>
- <a ng-if="require.type == 'text'">
- <input type="text" dynamic-model="'ctrl.' + require.label"/>
- </a>
- <a ng-if="require.type == 'textarea'">
- <textarea rows="2" cols="50" dynamic-model="'ctrl.' + require.label">
- </textarea>
- </a>
- </p>
- </div>
- </div>
-
- <div class="col-md-3" style="margin-top:12px; margin-left:8px;">
- <button type="submit" class="btn btn-primary" ng-click="ctrl.create()">Create</button>
- </div>
- </div>
-</div>
-
-<div class="pods-filters" style="margin-top:36px;">
- <h4>Filters</h4>
- <div class="row">
- <div class="col-md-3" style="margin-top:12px; margin-left:8px;">
- <button type="submit" class="btn btn-primary" ng-click="ctrl.update()">Filter</button>
- <button type="submit" class="btn btn-primary btn-danger" ng-click="ctrl.clearFilters()">Clear</button>
- </div>
- </div>
-</div>
-
-<div cg-busy="{promise:ctrl.authRequest,message:'Loading'}"></div>
-<div cg-busy="{promise:ctrl.podsRequest,message:'Loading'}"></div>
-
-<div ng-show="ctrl.data" class="pods-table" style="margin-top:24px; margin-left:8px;">
- <table ng-data="ctrl.data.pods" ng-show="ctrl.data" class="table table-striped table-hover">
- <tbody>
- <tr ng-repeat-start="(index, pod) in ctrl.data.pods">
- <td>
- <a href="#" ng-click="showPod = !showPod">{{pod.name}}</a>
- <div class="show-pod" ng-class="{ 'hidden': ! showPod }" style="margin-left:24px;">
- <p>
- owner: {{pod.owner}}<br>
- role: {{pod.role}}<br>
- mode: {{pod.mode}}<br>
- create_date: {{pod.creation_date}}<br>
- details: {{pod.details}}
- </p>
- </div>
- </td>
- </tr>
- <tr ng-repeat-end=>
- </tr>
- </tbody>
- </table>
-</div>
-<br>
-<div ng-show="ctrl.showError" class="alert alert-danger" role="alert">
- <span class="glyphicon glyphicon-exclamation-sign" aria-hidden="true"></span>
- <span class="sr-only">Error:</span>
- {{ctrl.error}}
-</div>