nexus site path corrected
[portal.git] / ecomp-portal-FE / client / app / views / support / contact-us / contact-us.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-contactUs-home">
21         <div class="contactUs-home-container">
22                 <div class="admins-page-main" id="contentId">
23                         <div id="title" class="contactUs-home-title">Contact Us
24                                 <span ng-if="isAdminPortalAdmin == true" class="ion-edit" style="float: right;" ng-click="contact.editContactUsModalPopup()"></span>
25                         </div>
26
27                         <div class="contactUs-general-div">
28                                 <span class="contactUs-txt">To give feedback or report an issue to the OpenECOMP Portal team, send email to <a
29                                         ng-href="mailto:{{contact.portalInfo_Address}}" target="_top">{{contact.portalInfo_Address}}</a>.
30                         </div>
31
32                 <br/> 
33                 <!-- Function Categories -->            
34                 <div id="appFunctionInfo" style="font-size: 20px;" class="contactUs-home-title"> Application Functions                                  
35                         <div class="contactUs-general-div">
36                                 <div style="width: 1050px; height:auto;" class="c-ecomp-att-abs-table default">
37                             <table att-table id="table-main"
38                                    table-data="contact.functionalTableData"
39                                    current-page="ignoredCurrentPage">
40                                  <thead att-table-row type="header">
41                                    <tr>
42                                       <th id="th-functionalItem-0" style="width:20%;cursor: default" att-table-header sortable="false">Category</th>                         
43                                       <th id="th-functionalItem-1" style="width:60%;cursor: default" att-table-header sortable="false">ECOMP Functions</th>
44                                       <th id="th-functionalItem-2" style="cursor: default" att-table-header sortable="false">ECOMP Application</th>
45                                       <!-- <th id="th-functionalItem-3" att-table-header >Contact</th> -->
46                                    </tr>
47                                  </thead>
48                                  <!-- Use track-by="UNIQUE KEY HERE" or leave out if no unique keys in data -->
49                                  <tbody att-table-row 
50                                         type="body"  
51                                         class="table-body" 
52                                         track-by="$index"
53                                         row-repeat="rowData in contact.functionalTableData">
54                                        <tr id="tr-rowData" ng-click="">
55                                          <td att-table-body>
56                                             <div id="functional-item-td-category" 
57                                         ng-show="$index == 0 || contact.functionalTableData[$index-1].category != rowData.category"
58                                                 ng-bind="rowData.category">
59                                             </div>
60                                          </td>
61                                          <td att-table-body>
62                                             <div id="functional-item-td-functions"  ng-bind="rowData.functions"></div>
63                                          </td>                           
64                                          <td att-table-body>
65                                            <a ng-click="contact.goToSection(rowData.app_Id, $index);">{{rowData.app_Name}}</a>  
66                                          </td>                                   
67                                        </tr>
68                                   </tbody>
69                             </table>
70                         </div>
71                         </div>
72                 </div>
73                 <br/>
74                 <!-- Display applicationInfo panels -->
75                 <div id="allAppInfo">
76                         <div style="font-size: 20px;" class="contactUs-home-title"> All Applications            
77                         </div>          
78                         <div ng-repeat="rowData in contact.appTable"
79                                 class="contactUs-collapsible-panel">
80                                 <div id="{{rowData.app_Id}}" style="height:60px; " class="contactUs-panel-header" ng-click="rowData.showFlag = !rowData.showFlag" >
81                                         <span ng-bind="rowData.app_name" style="position:relative; top:20px"></span>
82                                         
83                                         <span style="float: right; margin-right: 30px; margin-top:20px;">
84                                                 <span ng-hide="rowData.showFlag" class="ion-ios-arrow-down" alt="Expand app contact section"> </span> 
85                                                 <span ng-show="rowData.showFlag" class="ion-ios-arrow-up" alt="App contact section"> </span>
86                                         </span>
87                                 </div>
88                 
89                                 <div id="collapse{{$index}}" ng-show="rowData.showFlag"
90                                         class="contactUs-collapsible-panel">
91                                         <div class="contactUs-txt" ng-hide="rowData.contact_name || rowData.contact_email || rowData.url_Info || rowData.desc"> 
92                                                 <span style="margin-bottom: 20px;"> No application information is available. Please use the links above to contact the OpenECOMP Portal team. </span>
93                                         </div>
94                                         <div class="contactUs-txt" ng-show="rowData.contact_name || rowData.contact_email || rowData.url_Info || rowData.desc"> 
95                                           <table style="border-spacing: 10px 5px; max-width:950px; margin:10px;">
96                                                 <tr>
97                                                         <td class="contactUs-panel-labels" style="width: 120px;">Contact:</td>
98                                                         <td class="contactUs-panel-labels" style="width: 830px;">{{rowData.contact_name}}</td>
99                                                 </tr>
100                                                 <tr>
101                                                         <td class="contactUs-panel-labels">Email:</td>
102                                                         <td class="contactUs-panel-labels"><a ng-href="mailto:{{rowData.contact_email}}" target="_top">{{rowData.contact_email}}</a></td>
103                                                 </tr>
104                                                 <tr>
105                                                         <td class="contactUs-panel-labels">Info URL:</td>
106                                                         <td class="contactUs-panel-labels"><a ng-href="{{rowData.url_Info}}" target="_blank">{{rowData.url_Info}}</a></td>
107                                                 </tr>
108                                                 <tr>
109                                                         <td class="contactUs-panel-labels">Description:</td>
110                                                         <td class="contactUs-panel-labels">{{rowData.desc}}</td>
111                                                 </tr>
112                                                 <tr>
113                                                         <td class="contactUs-panel-labels">Get access:</td>
114                                                         <td class="contactUs-panel-labels"><a href="" ng-click="contact.goGetAccess(rowData.app_name);">Click for application and role information</a></td>
115                                                 </tr>
116                                           </table>
117                                         </div>                          
118                                 </div>
119                 
120                         </div>
121                 </div>
122
123         </div>
124 </div>
125 </div>