Create Catalogue page
[releng.git] / utils / test / reporting / pages / app / views / commons / selectTestcase.html
1 <!--select page-->
2 <div class="row">
3     <div classs="container">
4         <div class="col-lg-8">
5             <div class="ibox float-e-margins">
6                 <div class="ibox-content">
7                     <div>
8                         <!--<span class="pull-right text-right">
9                                         <small>Average value of sales in the past month in: <strong>United states</strong></small>
10                                             <br/>
11                                             All sales: 162,862
12                                         </span>-->
13                         <h3 class="font-bold no-margins">
14                             Select Project
15                         </h3>
16                         <small>Choose a Project to Select Test cases.</small>
17                         <div class="pull-right">
18                             <selectize options="VersionOption" ng-model="VersionSelected" config="VersionConfig"></selectize>
19                         </div>
20                     </div>
21                     <hr>
22
23                     <div class="m-t-sm">
24
25                         <div class="row">
26
27                             <center>
28                                 <div data-toggle="buttons" class="m-t-sm">
29                                     <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('FuncTest')">
30                               <input type="radio"  disabled="disabled"  >FuncTest
31                             
32                                 </label>
33                                     <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('YardStick')">
34                               <input type="radio"  disabled="disabled" > YardStick
35                             
36                                 </label>
37                                     <label class="btn btn-outline btn-success " style=" margin-right: 5px;" ng-click="toggleSelection('Bottleneck')">
38                               <input type="radio"  disabled="disabled" > Bottleneck
39                             
40                                 </label>
41                                 </div>
42                             </center>
43
44                         </div>
45
46                     </div>
47
48                 </div>
49             </div>
50         </div>
51         <div class="col-lg-4">
52             <div class="ibox float-e-margins">
53                 <div class="ibox-content">
54                     <div>
55                         <!--<span class="pull-right text-right">
56                                         <small>Average value of sales in the past month in: <strong>United states</strong></small>
57                                             <br/>
58                                             All sales: 162,862
59                                         </span>-->
60                         <h3 class="font-bold no-margins">
61                             Project Description
62
63                         </h3>
64
65
66
67                     </div>
68                     <hr>
69                     <div class="m-t-sm" ng-show="projectSelect.indexOf('YardStick')!=-1">
70                         <p>
71                             YardStick is a someting.......
72                         </p>
73                     </div>
74                     <div class="m-t-sm" ng-show="projectSelect.indexOf('FuncTest')!=-1">
75                         <p>
76                             FuncTest is a someting.......
77                         </p>
78                     </div>
79                     <div class="m-t-sm" ng-show="projectSelect.indexOf('Bottleneck')!=-1">
80                         <p>
81                             Bottleneck is a someting.......
82                         </p>
83                     </div>
84
85
86                 </div>
87             </div>
88
89         </div>
90
91         <div class="col-lg-12">
92             <div class="ibox float-e-margins">
93                 <div class="ibox-content">
94                     <div>
95                         <!--<span class="pull-right text-right">
96                                         <small>Average value of sales in the past month in: <strong>United states</strong></small>
97                                             <br/>
98                                             All sales: 162,862
99                                         </span>-->
100                         <h3 class="font-bold no-margins">
101                             Select Test Case
102                         </h3>
103                         <small>Choose Test Cases </small>
104
105                     </div>
106                     <hr>
107
108                     <div class="m-t-sm">
109                         <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('FuncTest')!=-1">
110                             <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in funcTestCase" value={{case}} ng-class="{'active': case == selectedFunc}">
111                               <input type="checkbox"  disabled="disabled"  >{{case}}
112                             
113                                 </label>
114                         </div>
115                         <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('YardStick')!=-1">
116                             <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in yardStickCase" value={{case}}>
117                               <input type="checkbox"  disabled="disabled"  >{{case}}
118                             
119                                 </label>
120                         </div>
121                         <div data-toggle="buttons" class="m-t-sm" ng-show="projectSelect.indexOf('Bottleneck')!=-1">
122                             <label class="btn btn-outline btn-success " style=" margin-right: 5px;" tooltips tooltip-template="FuncTest is something" tooltip-size="small" ng-repeat="case in bottleNeckCase" value={{case}} ng-class="{'active': case == selectBottle}">
123                               <input type="checkbox"  disabled="disabled"  >{{case}}
124                             
125                                 </label>
126                         </div>
127
128                     </div>
129
130                 </div>
131
132
133             </div>
134
135         </div>
136     </div>
137     <div style="margin-top: 10px;" class="pull-right">
138         <button class="btn btn-primary" ng-click="test()">Submit</button>
139     </div>
140
141
142 </div>