[POLICY-73] replace openecomp for policy-engine
[policy/engine.git] / ONAP-SDK-APP / src / main / webapp / app / fusion / scripts / DS2-view-models / ds2-profile / profile_searchDS2.html
1 <div id="page-content">
2         <div>
3                 <h1 class="heading-page" id="profileSearch">Profile Search</h1>
4                 <div ng-show="showLoader" class="span loader-container">
5                         <i class="icon-primary-spinner" role="img"
6                                 aria-label="Please wait while we load your content"></i>
7                 </div>
8
9                 <div ng-hide="showLoader">
10                         <table class="striped" table-data="tableData">
11                                 <thead>
12                                         <tr>
13                                                 <th>User ID</th>
14                                                 <th>Last Name</th>
15                                                 <th>First Name</th>
16                                                 <th>Email</th>
17                                                 <th>User ID</th>
18                                                 <th>Manager User ID</th>
19                                                 <th>Edit</th>
20                                                 <th>Active?</th>
21                                         </tr>
22                                 </thead>
23                                 <tbody type="body" ng-repeat="rowData in tableData">
24                                         <tr>
25                                                 <td>{{rowData.id}}</td>
26                                                 <td>{{rowData.lastName}}</td>
27                                                 <td>{{rowData.firstName}}</td>
28                                                 <td>{{rowData.email}}</td>
29                                                 <td>{{rowData.orgUserId}}</td>
30                                                 <td>{{rowData.orgManagerUserId}}</td>
31                                                 <!--  Include an edit image with respective redirection -->
32                                                 <td><a href="#/profile/{{rowData.id}}" class="icon-misc-pen"
33                                                         style="color: #888; font-size: 20px;"></a></td>
34                                                 <td>
35                                                         <div class="form-row">
36                                                                 <label class="btn-switch-label" tabindex="0" role="option">
37                                                                         <input type="checkbox" b2b-switches ng-model="rowData.active"
38                                                                         ng-disabled="allDisabled" aria-disabled="{{allDisabled}}">
39                                                                         <div class="sr-text hidden-spoken" ng-if="!allDisabled">Double
40                                                                                 tap to turn</div>
41                                                                 </label>
42                                                         </div>
43                                                 </td>
44
45                                         </tr>
46                                 </tbody>
47                         </table>
48
49                         <div class="well" style="padding-bottom: 35px;">
50                                 <div class="row -page short">
51                                         <div b2b-pagination="" total-pages="totalPages1"
52                                                 current-page="currentPage1" click-handler="customHandler"
53                                                 role="navigation" aria-label="Customer Data Pages"></div>
54                                 </div>
55                         </div>
56                         
57                 </div>
58         </div>
59 </div>