[UI] Support data registration
[validation.git] / ui / src / main / webapp / app / BluvalUI / GetLayers / GetLayersTemplate.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     <div>
19         <h1 class="heading-page">Get Layers</h1>
20
21         <div ng-show="loadingLayers">
22             <img src=" static/fusion/images/giphy.gif" />
23         </div>
24
25         <h2 class="heading-small"></h2>
26         <table class="table table-striped table-bordered">
27             <thead>
28                 <tr style="background-color: grey;">
29                     <th class>Id&nbsp;</th>
30                     <th class>Layer&nbsp;</th>
31                 </tr>
32             </thead>
33             <tbody>
34                 <tr class="border_bottom"
35                     ng-repeat="layerInfo in layerInfos">
36                     <td class
37                         style="padding-left: 10px; font-size: 15px; width: 13%;">
38                         {{ layerInfo.blueprintLayerId }}</td>
39                     <td class
40                         style="padding-left: 10px; font-size: 15px; width: 13%;">
41                         {{ layerInfo.layer }}</td>
42                 </tr>
43             </tbody>
44         </table>
45
46     </div>
47 </div>