[UI] Support data registration
[validation.git] / ui / src / main / webapp / app / BluvalUI / GetLabs / GetLabsTemplate.html
diff --git a/ui/src/main/webapp/app/BluvalUI/GetLabs/GetLabsTemplate.html b/ui/src/main/webapp/app/BluvalUI/GetLabs/GetLabsTemplate.html
new file mode 100644 (file)
index 0000000..effaf88
--- /dev/null
@@ -0,0 +1,50 @@
+<!--
+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;">
+    <div>
+        <h1 class="heading-page">Get Labs</h1>
+
+        <div ng-show="loadingLabs">
+            <img src=" static/fusion/images/giphy.gif" />
+        </div>
+
+        <h2 class="heading-small"></h2>
+        <table class="table table-striped table-bordered">
+            <thead>
+                <tr style="background-color: grey;">
+                    <th class>Id&nbsp;</th>
+                    <th class>Lab&nbsp;</th>
+                    <th class>Silo&nbsp;</th>
+                </tr>
+            </thead>
+            <tbody>
+                <tr class="border_bottom"
+                    ng-repeat="labInfo in labInfos">
+                    <td class
+                        style="padding-left: 10px; font-size: 15px; width: 13%;">
+                        {{ labInfo.labId }}</td>
+                    <td class
+                        style="padding-left: 10px; font-size: 15px; width: 13%;">
+                        {{ labInfo.lab }}</td>
+                    <td class
+                        style="padding-left: 10px; font-size: 15px; width: 13%;">{{
+                        labInfo.silo }}</td>
+                </tr>
+            </tbody>
+        </table>
+    </div>
+</div>