nexus site path corrected
[portal.git] / ecomp-portal-FE / client / app / views / catalog / catalog.tpl.html
1 <!--
2   ================================================================================
3   eCOMP Portal
4   ================================================================================
5   Copyright (C) 2017 AT&T Intellectual Property
6   ================================================================================
7   Licensed under the Apache License, Version 2.0 (the "License");
8   you may not use this file except in compliance with the License.
9   You may obtain a copy of the License at
10   
11        http://www.apache.org/licenses/LICENSE-2.0
12   
13   Unless required by applicable law or agreed to in writing, software
14   distributed under the License is distributed on an "AS IS" BASIS,
15   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   See the License for the specific language governing permissions and
17   limitations under the License.
18   ================================================================================
19   -->
20 <div class="w-ecomp-app-catalog" id="contentId">
21         <div class="app-catalog-container">
22                 <div id="app-catalog-title" class="app-catalog-title">Application Catalog</div>
23                 <div class="app-catalog-list">
24                         <div class="simulateCatGridHeader">
25                                 <span class="simulateCatGridHeaderDetails"> Click the check
26                                         boxes below to choose which applications are shown on the <a
27                                         href="applicationsHome">home page</a>.
28                                 </span> <br>
29                                 <br> <label class="simulateCatGridHeaderRadio"> Filter:
30                                         <input type="radio" ng-model="radioValue" value="All"> All
31                                 </label> <label class="simulateCatGridHeaderRadio"> <input
32                                         type="radio" ng-model="radioValue" value="Accessible">
33                                         Accessible
34                                 </label> <label class="simulateCatGridHeaderRadio"> <input
35                                         type="radio" ng-model="radioValue" value="Selected"> On
36                                         Home Page
37                                 </label>
38
39                         </div>
40                         <div class="appCatalogue-boarder">
41                                 <div class="gridster-container override_background">
42                                         <div att-gridster att-gridster-options="catalog.gridsterOpts">
43                                                 <div class="style_prevu_kit" att-gridster-item='item'
44                                                         ng-repeat="item in appCatalog" ng-animate="'animate'"
45                                                         ng-if="(item.select && radioValue=='Selected') || (item.access && radioValue=='Accessible') || (radioValue == 'All')"
46                                                         id="app-{{item.headerText.split(' ').join('-')}}">
47
48                                                         <div class="grider-content-ecomp app-visibility {{item.access}}"
49                                                                 ng-show="(item.select && radioValue=='Selected') || (item.access && radioValue=='Accessible') || (radioValue == 'All')">
50                                                                 <div id="grips-{{item.headerText.split(' ').join('-')}}"
51                                                                         ng-hide="users.isLoadingTable && !users.getAppCatalogIsDone"
52                                                                         att-gridster-item-header
53                                                                         grips-img-path="assets/images/grips.png"
54                                                                         header-text="{{item.headerText | elipsis: 15}}"
55                                                                         class="app-gridster-header">
56                                                                         <div ng-show="item.access || isAdminPortalAdmin">
57                                                                                 <input type="checkbox"  ng-model="item.select"
58                                                                                         ng-change="catalog.storeSelection(item)">
59                                                                         </div>
60                                                                         <div ng-show="item.pending && !item.access">
61                                                                                 <i style="font-size: 8px">Pending Access</i>
62                                                                         </div>
63                                                                 </div>
64                                                                 <div id="app-image-{{item.headerText.split(' ').join('-')}}"
65                                                                         att-gridster-item-body
66                                                                         ng-style="{'cursor':'pointer',
67                                                                                 'background-image': 'url('+(item.imageLink)+')',
68                                                                                 'order': item.order, 
69                                                                                 'background-color':'white',
70                                                                                 'background-repeat': 'no-repeat',
71                                                                                 'background-size': '170px 130px'}"
72                                                                         ng-click="catalog.getAccess(item)"
73                                                                         ng-hide="users.isLoadingTable && !users.getAppCatalogIsDone"
74                                                                         class="gridsterContent"></div>
75                                                         </div>
76                                                 </div>
77                                         </div>
78                                 </div>
79                         </div>
80                         <br>
81
82                         <div class="w-ecomp-main-disclaimer">
83                                 To request access to an application, please visit the <a
84                                         ng-href="getAccess">Get Access</a> page.
85                         </div>
86
87                         <br>
88                 </div>
89
90         </div>
91 </div>