mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.3 KiB
106 lines
4.3 KiB
@using PlexRequests.UI.Helpers
|
|
@inherits PlexRequests.UI.Helpers.AngularViewBase
|
|
@Html.LoadAngularAssets()
|
|
<script src="~/Content/app/userManagement/userManagementController.js"></script>
|
|
<script src="~/Content/app/userManagement/userManagementService.js"></script>
|
|
<div ng-controller="userManagementController" ng-init="getUsers()">
|
|
|
|
<br />
|
|
<br />
|
|
<br />
|
|
<div class="col-md-7">
|
|
<br>
|
|
<br>
|
|
<div ng-show="error.error" ng-bind="error.errorMessage"></div>
|
|
<form ng-submit="addUser()">
|
|
<div class="form-group">
|
|
<input id="username" type="text" placeholder="user" ng-model="user.username" class="form-control form-control-custom" />
|
|
</div>
|
|
<div class="form-group">
|
|
<input id="password" type="password" placeholder="password" ng-model="user.password" class="form-control form-control-custom" />
|
|
</div>
|
|
<input type="submit" class="btn btn-success-outline" value="Add" />
|
|
</form>
|
|
<form>
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<div class="input-group-addon">
|
|
<i class="fa fa-search"></i>
|
|
</div>
|
|
|
|
<input type="text" class="form-control" placeholder="Search" ng-model="searchTerm">
|
|
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<table class="table table-striped table-hover table-responsive table-condensed">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
<a href="#" ng-click="sortType = 'username'; sortReverse = !sortReverse">
|
|
Username
|
|
<span ng-show="sortType == 'username' && !sortReverse" class="fa fa-caret-down"></span>
|
|
<span ng-show="sortType == 'username' && sortReverse" class="fa fa-caret-up"></span>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a href="#" ng-click="sortType = 'emailAddress'; sortReverse = !sortReverse">
|
|
Email
|
|
<span ng-show="sortType == 'emailAddress' && !sortReverse" class="fa fa-caret-down"></span>
|
|
<span ng-show="sortType == 'emailAddress' && sortReverse" class="fa fa-caret-up"></span>
|
|
</a>
|
|
</th>
|
|
<th>
|
|
<a href="#" ng-click="sortType = 'type'; sortReverse = !sortReverse">
|
|
User Type
|
|
<span ng-show="sortType == 'type' && !sortReverse" class="fa fa-caret-down"></span>
|
|
<span ng-show="sortType == 'type' && sortReverse" class="fa fa-caret-up"></span>
|
|
</a>
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="u in users | orderBy:sortType:sortReverse | filter:searchTerm">
|
|
<td>
|
|
{{u.username}}
|
|
</td>
|
|
<td>
|
|
{{u.emailAddress}}
|
|
</td>
|
|
<td>
|
|
{{u.claims}}
|
|
</td>
|
|
<td>
|
|
{{u.type === 1 ? 'Local User' : 'Plex User'}}
|
|
</td>
|
|
<td>
|
|
<a href="#" ng-click="selectUser(u.id)" class="btn btn-info-outline">Details/Edit</a>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="col-md-5 col-md-push-1" ng-show="selectedUser.username">
|
|
<br />
|
|
<br />
|
|
<img ng-src="{{selectedUser.plexInfo.thumb}}" />
|
|
<div hidden="hidden" ng-bind="selectedUser.id"></div>
|
|
<div>
|
|
<strong>Username: </strong><span ng-bind="selectedUser.username"></span>
|
|
</div>
|
|
<div ng-show="selectedUser.emailAddress">
|
|
<strong>Email Address: </strong><span ng-bind="selectedUser.emailAddress"></span>
|
|
</div>
|
|
<div>
|
|
<strong>Permissions: </strong><span ng-bind="selectedUser.claims"></span>
|
|
</div>
|
|
<div>
|
|
<strong>User Type: </strong><span ng-bind="selectedUser.type === 1 ? 'Local User' : 'Plex User'"></span>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div> |