[UI] Support UI partial control
[validation.git] / ui / src / main / webapp / app / BluvalUI / GetBasedOnDate / GetBasedOnDateTemplate.html
diff --git a/ui/src/main/webapp/app/BluvalUI/GetBasedOnDate/GetBasedOnDateTemplate.html b/ui/src/main/webapp/app/BluvalUI/GetBasedOnDate/GetBasedOnDateTemplate.html
new file mode 100644 (file)
index 0000000..e8240cf
--- /dev/null
@@ -0,0 +1,71 @@
+<!--
+Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+<div id="page-content" class="content" style="padding: 25px;">
+
+    <h1 class="heading-page">Get Results Based on Date</h1>
+
+    <div class="Row">
+        <div class="Column">
+            <div class="form-row">
+                <label for="textinputID-3a">Select Lab: </label> <select
+                    ng-model="selectedLab" ng-init="labs[0]"
+                    ng-change="selectedLabChange()"
+                    ng-options="n for n in labs">
+                </select>
+            </div>
+        </div>
+
+        <div class="Column">
+            <div class="form-row">
+                <label for="textinputID-3a">Select Blueprint: </label> <select
+                    ng-model="selectedBlueprint" ng-init="blueprints[0]"
+                    ng-change="selectedBlueprintChange()"
+                    ng-options="n for n in blueprints">
+                </select>
+            </div>
+        </div>
+
+        <div class="Column">
+            <div class="form-row">
+                <label for="textinputID-3a">Select Blueprint
+                    Version: </label> <select ng-model="selectedVersion"
+                    ng-init="versions[0]"
+                    ng-change="selectedVersionChange()"
+                    ng-options="n for n in versions">
+                </select>
+            </div>
+        </div>
+
+        <div class="Column">
+            <div class="form-row">
+                <label for="textinputID-3a">Select Date: </label> <input
+                    type="date" ng-model="selectedDate">
+            </div>
+        </div>
+    </div>
+
+    <div class="fn-ebz-container" style="position: relative; top: 25px;">
+        <button href="javascript:void(0)" id="addbtn"
+            style="bottom: -17px;" size="small"
+            att-accessibility-click="13,32"
+            class="btn btn-alt btn-small" ng-click="get();">Get</button>
+    </div>
+
+    <div ng-show="loadingLabs || loadingBlueprints || loadingVersions">
+        <img src=" static/fusion/images/giphy.gif" />
+    </div>
+
+</div>
\ No newline at end of file