Merge "Testing live migration using qemu"
[yardstick.git] / gui / app / views / testcasechoose.html
1 <div class="content">
2
3     <div>
4         Test case list
5         <button class="btn btn-default" style="margin-left:20px;" ng-click="openDialog()">
6                                     <div ng-show="!loadingOPENrc">Create </div>
7                                      <img src="images/loading2.gif" width="25" height="25" ng-if="loadingOPENrc" />
8                                     </button>
9
10
11         <hr/> You have choose :
12         <div ng-repeat="selected in suitReconstructList" style="display:inline;" class="item">{{selected}}</div>
13         <hr/>
14
15         <!--<div ng-repeat="env in environmentList">
16             {{env.name}}
17         </div>-->
18         <div dir-paginate="test in testcaselist.testcases | itemsPerPage: 10">
19             <div style="display:flex;flex-direction:row;">
20                 <img src="images/checkyes.png" style="height:12px;cursor:pointer" ng-click="constructTestSuit(test.Name)" ng-show="testsuiteList.indexOf(test.Name)>-1" />
21                 <img src="images/checkno.png" style="height:12px;cursor:pointer" ng-click="constructTestSuit(test.Name)" ng-show="testsuiteList.indexOf(test.Name)==-1" />
22                 <div style="margin-left:50px;"> {{test.Name}}</div>
23                 <div style="font-size:10px;margin-left:100px">{{test.Description}}</div>
24
25             </div>
26             <hr style="margin-top:5px;margin-bottom:5px;" />
27         </div>
28         <center>
29             <dir-pagination-controls></dir-pagination-controls>
30         </center>
31
32
33
34     </div>
35     <toaster-container></toaster-container>
36
37     <style>
38         .item {
39             background-color: #3498db;
40             color: #fff;
41             width: 150px;
42             border-radius: 5px;
43             padding-left: 10px;
44             margin-left: 2px;
45             margin-top: 3px;
46             padding: 4px;
47         }
48     </style>