summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html')
-rw-r--r--ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html60
1 files changed, 0 insertions, 60 deletions
diff --git a/ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html b/ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html
deleted file mode 100644
index 25c081a9..00000000
--- a/ecomp-sdk/epsdk-app-os/src/main/webapp/app/fusion/scripts/DS2-view-models/ds2-profile/profile_searchDS2.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<div id="page-content">
- <div>
- <h1 class="heading-page" id="profileSearch">Profile Search</h1>
- <div ng-show="showLoader" class="span loader-container">
- <i class="icon-primary-spinner" role="img"
- aria-label="Please wait while we load your content"></i>
- </div>
-
- <div ng-hide="showLoader">
- <table class="striped" table-data="tableData">
- <thead>
- <tr>
- <th>User ID</th>
- <th>Last Name</th>
- <th>First Name</th>
- <th>Email</th>
- <th>User ID</th>
- <th>Manager User ID</th>
- <th>Edit</th>
- <th ng-show="(isAppCentralized=='false')">Active?</th>
- </tr>
- </thead>
- <tbody type="body" ng-repeat="rowData in tableData">
- <tr>
- <td>{{rowData.id}}</td>
- <td>{{rowData.lastName}}</td>
- <td>{{rowData.firstName}}</td>
- <td>{{rowData.email}}</td>
- <td>{{rowData.orgUserId}}</td>
- <td>{{rowData.orgManagerUserId}}</td>
- <!-- Include an edit image with respective redirection -->
- <td><a href="#/profile/{{rowData.id}}" class="icon-misc-pen"
- style="color: #888; font-size: 20px;"></a></td>
- <td ng-show="(isAppCentralized=='false')">
- <div class="form-row">
- <label class="btn-switch-label" tabindex="0" role="option">
- <input type="checkbox" b2b-switches
- ng-model="rowData.active" ng-click="toggleProfileActive(rowData)"
- ng-disabled="allDisabled" aria-disabled="{{allDisabled}}" />
- <div class="sr-text hidden-spoken" ng-if="!allDisabled">Double
- tap to turn</div>
- </label>
- </div>
- </td>
-
- </tr>
- </tbody>
- </table>
-
- <div class="well" style="padding-bottom: 35px;">
- <div class="row -page short">
- <div b2b-pagination="" total-pages="totalPages1"
- current-page="currentPage1" click-handler="customHandler"
- role="navigation" aria-label="Customer Data Pages"></div>
- </div>
- </div>
-
- </div>
- </div>
-</div>