Security/ Package Name changes
[portal.git] / ecomp-portal-FE-common / client / app / views / widget-catalog / widget-catalog.tpl.html
1 <!--
2   ============LICENSE_START==========================================
3   ONAP Portal
4   ===================================================================
5   Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6   ===================================================================
7  
8   Unless otherwise specified, all software contained herein is licensed
9   under the Apache License, Version 2.0 (the "License");
10   you may not use this software except in compliance with the License.
11   You may obtain a copy of the License at
12  
13               http://www.apache.org/licenses/LICENSE-2.0
14  
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20  
21   Unless otherwise specified, all documentation contained herein is licensed
22   under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23   you may not use this documentation except in compliance with the License.
24   You may obtain a copy of the License at
25  
26               https://creativecommons.org/licenses/by/4.0/
27  
28   Unless required by applicable law or agreed to in writing, documentation
29   distributed under the License is distributed on an "AS IS" BASIS,
30   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31   See the License for the specific language governing permissions and
32   limitations under the License.
33  
34   ============LICENSE_END============================================
35  
36   ECOMP is a trademark and service mark of AT&T Intellectual Property.
37   -->
38 <div class="w-ecomp-main">
39         <div class="w-ecomp-main-container">
40                 <div class="widget-catalog" id="page-content">
41                         <div id="title" class="w-ecomp-main-view-title">
42                                 <h1 class="heading-page">Widget Catalog</h1>
43                         </div>
44                         <div class="widget-centerAlignment">
45                                 <div class="portals-list">
46                                         <div ng-show="widgetCatalog.isCommError">Failed to
47                                                 communicate with the widget microservice.</div>
48                                         <div id="widgets" class="information-section"
49                                                 ng-hide="widgetCatalog.isCommError">
50                                                 <div id="news-gridster-container"
51                                                         class="gridster-container override_background">
52                                                         <div class="content" gridster="widgetCatalog.gridsterOpts">
53                                                                 <ul>
54                                                                         <li gridster-item="widget" ng-repeat="widget in widgetViewData">
55                                                                                 <div class="box">
56                                                                                         <div class="box-header">
57                                                                                                 <i style="cursor: move;" class="icon-content-gridguide"></i>
58                                                                                                 <h3>{{ widget.headerText}}</h3>
59                                                                                                 <div class="form-row">
60                                                                                                         <label id="widget-checkbox-label" class="checkbox"> <input type="checkbox"
61                                                                                                                 id="{{widget.headerText.split(' ').join('-')}}-checkbox"
62                                                                                                                 ng-model="widget.select"
63                                                                                                                 ng-change="storeSelection(widget)"> <i
64                                                                                                                 class="skin"></i>
65                                                                                                         </label>
66                                                                                                 </div>
67                                                                                         </div>
68                                                                                         <div class="box-content">
69                                                                                                 <div dyn-attr="widget.attrb"></div>
70                                                                                         </div>
71                                                                                 </div>
72                                                                         </li>
73                                                                 </ul>
74                                                         </div>
75                                                 </div>
76                                         </div>
77                                         <div ng-show="widgetCatalog.isEnlarged">
78                                                 <div id="widgets-button-enlarge-close"
79                                                         class="enlarge-close-button"
80                                                         ng-click="widgetCatalog.isEnlarged=false">X</div>
81                                                 <iframe id="iframe-widget-enlarge-close"
82                                                         ng-src="{{widgetCatalog.enlargeURL | trusted}}"
83                                                         class="enlarge-content"> </iframe>
84                                         </div>
85                                 </div>
86                         </div>
87
88                         <div id="widgets-disclaimer" class="w-ecomp-main-disclaimer">
89                                 To request access to an application widget, please visit the <a
90                                         ng-href="getAccess">Get Access</a> page.
91                         </div>
92                 </div>
93         </div>
94 </div>