diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-03-28 14:53:49 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-03-28 14:53:49 +0000 |
commit | 4ba6837774ec06ddb75592ff567d53868a44bc46 (patch) | |
tree | 7acf5dd0ee3bb28bf4947f955b52b3e10c3792fd /utils/test/reporting/pages/app/views/commons/admin.html | |
parent | 848d10e2255497239fa6b0e3d4e9e0701e3b5f54 (diff) | |
parent | 04ef201b1e8f5f3dcfde4319854b81c25240e63f (diff) |
Merge "Create Catalogue page"
Diffstat (limited to 'utils/test/reporting/pages/app/views/commons/admin.html')
-rw-r--r-- | utils/test/reporting/pages/app/views/commons/admin.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/utils/test/reporting/pages/app/views/commons/admin.html b/utils/test/reporting/pages/app/views/commons/admin.html new file mode 100644 index 000000000..25911ac96 --- /dev/null +++ b/utils/test/reporting/pages/app/views/commons/admin.html @@ -0,0 +1,35 @@ +<div class="row"> + <div classs="container"> + <div class="col-lg-12"> + <div class="ibox float-e-margins"> + <div class="ibox-content"> + + <div> + <h3 class="font-bold no-margins"> + My Scenarios + </h3> + <small>List all your Scenarios.</small> + </div> + <hr> + <table class="table table-striped"> + <tbody> + <tr ng-init="count=1" ng-click="showSelect(count)" ng-repeat=" list in scenarioList"> + + <td> {{list}}</td> + <td> <input type="checkbox"></i> + </td> + + </tr> + </tbody> + </table> + + </div> + + </div> + </div> + </div> + <div style="margin-top: 10px;" class="pull-right"> + <button class="btn btn-primary" ng-click="test()">Create</button> + <button class="btn btn-primary" ng-click="test()">Delete</button> + </div> +</div>
\ No newline at end of file |