[UI] Support UI partial control
[validation.git] / ui / src / main / webapp / app / BluvalUI / GetLastRun / GetLastRunTemplate.html
1 <!--
2 Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8        http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 -->
16
17 <div id="page-content" class="content" style="padding: 25px;">
18
19     <h1 class="heading-page">Get Last Run</h1>
20
21     <div class="Row">
22         <div class="Column">
23             <div class="form-row">
24                 <label for="textinputID-3a">Select Lab: </label> <select
25                     ng-model="selectedLab" ng-init="labs[0]"
26                     ng-change="selectedLabChange()"
27                     ng-options="n for n in labs">
28                 </select>
29             </div>
30         </div>
31
32         <div class="Column">
33             <div class="form-row">
34                 <label for="textinputID-3a">Select Blueprint: </label> <select
35                     ng-model="selectedBlueprint" ng-init="blueprints[0]"
36                     ng-change="selectedBlueprintChange()"
37                     ng-options="n for n in blueprints">
38                 </select>
39             </div>
40         </div>
41
42         <div class="Column">
43             <div class="form-row">
44                 <label for="textinputID-3a">Select Blueprint
45                     Version: </label> <select ng-model="selectedVersion"
46                     ng-init="versions[0]"
47                     ng-change="selectedVersionChange()"
48                     ng-options="n for n in versions">
49                 </select>
50             </div>
51         </div>
52
53         <div class="Column">
54             <div class="form-row">
55                 <label for="textinputID-3a">Select Blueprint
56                     Layer Under Validation: </label> <select
57                     ng-model="selectedLayer" ng-init="layers[0]"
58                     ng-change="selectedLayerChange()"
59                     ng-options="n for n in layers">
60                 </select>
61             </div>
62         </div>
63
64         <div class="Column">
65             <div class="form-row">
66                 <label for="textinputID-3a">Optional Test Cases:
67                 </label> <select ng-model="selectedOptional"
68                     ng-init="optional[0]"
69                     ng-change="selectedOptionalChange()"
70                     ng-options="n for n in optionals">
71                 </select>
72             </div>
73         </div>
74
75         <div class="Column">
76             <div class="form-row">
77                 <label for="textinputID-3a">Select Desired
78                     Overall Outcome: </label> <select ng-model="selectedOutcome"
79                     ng-init="outcomes[0]"
80                     ng-change="selectedOutcomeChange()"
81                     ng-options="n for n in outcomes">
82                 </select>
83             </div>
84         </div>
85     </div>
86
87     <div class="fn-ebz-container" style="position: relative; top: 25px;">
88         <button href="javascript:void(0)" id="addbtn"
89             style="bottom: -17px;" size="small"
90             att-accessibility-click="13,32"
91             class="btn btn-alt btn-small" ng-click="get();">Get</button>
92     </div>
93 </div>