[UI] Support UI partial control
[validation.git] / ui / src / main / webapp / app / BluvalUI / GetBasedOnDate / GetBasedOnDateTemplate.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 <div id="page-content" class="content" style="padding: 25px;">
17
18     <h1 class="heading-page">Get Results Based on Date</h1>
19
20     <div class="Row">
21         <div class="Column">
22             <div class="form-row">
23                 <label for="textinputID-3a">Select Lab: </label> <select
24                     ng-model="selectedLab" ng-init="labs[0]"
25                     ng-change="selectedLabChange()"
26                     ng-options="n for n in labs">
27                 </select>
28             </div>
29         </div>
30
31         <div class="Column">
32             <div class="form-row">
33                 <label for="textinputID-3a">Select Blueprint: </label> <select
34                     ng-model="selectedBlueprint" ng-init="blueprints[0]"
35                     ng-change="selectedBlueprintChange()"
36                     ng-options="n for n in blueprints">
37                 </select>
38             </div>
39         </div>
40
41         <div class="Column">
42             <div class="form-row">
43                 <label for="textinputID-3a">Select Blueprint
44                     Version: </label> <select ng-model="selectedVersion"
45                     ng-init="versions[0]"
46                     ng-change="selectedVersionChange()"
47                     ng-options="n for n in versions">
48                 </select>
49             </div>
50         </div>
51
52         <div class="Column">
53             <div class="form-row">
54                 <label for="textinputID-3a">Select Date: </label> <input
55                     type="date" ng-model="selectedDate">
56             </div>
57         </div>
58     </div>
59
60     <div class="fn-ebz-container" style="position: relative; top: 25px;">
61         <button href="javascript:void(0)" id="addbtn"
62             style="bottom: -17px;" size="small"
63             att-accessibility-click="13,32"
64             class="btn btn-alt btn-small" ng-click="get();">Get</button>
65     </div>
66
67     <div ng-show="loadingLabs || loadingBlueprints || loadingVersions">
68         <img src=" static/fusion/images/giphy.gif" />
69     </div>
70
71 </div>