Bulk upload changes and music health check apis
[portal.git] / ecomp-portal-FE-os / client / src / views / search / search.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   
37   -->
38 <div class="search-div" ng-controller="searchSnippetCtrl">
39         <div class="notification-div">
40                 <div class="form-field form-field__small">
41                         <div class="search-input">
42                                 <input id="mainSearchText" type="text"
43                                         ng-keypress="searchDialogToggle($event)"
44                                         placeholder="What are you looking for?"
45                                         class="form-field form-field__small" />
46                         </div>
47                         <span class="icon-search-span"> <i class="icon-search">&nbsp;</i>
48                         </span>
49
50                 </div>
51         </div>
52         <div ng-show="searchResDialog" class="search-res-dialog">
53                 <div id="reg-header-snippet">
54
55                         <div tabindex="0" class="reg-profileDetails" id="reg-searchPop-id">
56                                 <div id="contentVertical" 
57                                         class="ng-scope vertical" style="position: relative;">
58                                         <ul class="searchUl">
59                                                 <li><a class="icon-tiles"></a> <a id="search-app-title"
60                                                         ng-click="goToUrl(item)" class="searchLiHeader">Applications:</a>
61                                                 </li>
62                                                 <li ng-repeat='item in items.application'><a
63                                                         id="search-app-item-{{item.name.split(' ').join('-')}}-{{$index}}"
64                                                         ng-click="goToUrl(item)" class="searchLiItems">{{item.name}}</a>
65                                                 </li>
66                                         </ul>
67
68                                         <ul class="searchUl">
69                                                 <li><a class="icon-tiles-small"></a> <a
70                                                         id="seach-functional-menu-title" ng-click="goToUrl(item)"
71                                                         class="searchLiHeader">Functional Menus:</a></li>
72                                                 <li ng-repeat='item in items.menu'><a
73                                                         id="search-functional-menu-item-{{item.name.split(' ').join('-')}}-{{$index}}"
74                                                         ng-click="goToUrl(item)" class="searchLiItems">{{item.name}}</a>
75                                                 </li>
76                                         </ul>
77
78
79                                         <ul class="searchUl">
80                                                 <li><a class="full-linear-icon-person"
81                                                         style="font-size: 16px;"></a> <a id="search-user-title"
82                                                         ng-click="goToUrl(item)" class="searchLiHeader">Users:</a></li>
83                                                 <li ng-repeat='item in items.user'><a
84                                                         id="search-user-item-{{item.name.split(' ').join('-')}}-{{$index}}"
85                                                         ng-href="mailto:{{item.target}}" class="searchLiItems">{{item.name}}</a>
86
87                                                 </li>
88                                         </ul>
89
90                                         <ul class="searchUl">
91                                                 <li><a class="full-linear-icon-person"
92                                                         style="font-size: 16px;"></a> <a id="search-widgets-title"
93                                                         ng-click="goToUrl(item)" class="searchLiHeader">Widgets:</a></li>
94                                                 <li ng-repeat='item in items.widget'><a
95                                                         id="search-widgets-item-{{item.name.split(' ').join('-')}}-{{$index}}"
96                                                         ng-href="widgetCatalog" class="searchLiItems">{{item.name}}</a></li>
97                                         </ul>
98                                 </div>
99                         </div>
100                 </div>
101         </div>
102 </div>