mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-27 01:29:17 +01:00
* commit '84ec1c80d283cbea8b186629e7b1de49d91cf9ba': fix(heroku): fix invalid app.json (#1901) feat(deps): dependencies upgrade (#1887) release(0.6.0): MEAN.JS 0.6.0 (#1863) feat(readme): Deploy to Heroku button (#1854) fix(users): Spacing Issues Abstracted OAuth routes to use req param to identify strategy & moved scope to actual strategy definition. Save profile images to Amazon S3 (#1857) fix(build): Require correct dependencies for prod build (#1855) fix(eslint): Make `space-before-function-paren` rule consistent with other rules (#1858) fix(gulpfile): show error on uglify (#1860) feat(core): Add manifest.json (#1851) # Conflicts: # CHANGELOG.md # README.md # modules/core/client/views/header.client.view.html # modules/users/client/views/settings/change-profile-picture.client.view.html # modules/users/server/controllers/users/users.profile.server.controller.js # package.json
44 lines
2.1 KiB
HTML
44 lines
2.1 KiB
HTML
<section class="container">
|
|
<div class="page-header">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<h3>{{ 'USERS_LIST' | translate}}</h3>
|
|
</div>
|
|
<div class="col-md-4 checkbox-inline" style="margin-top: 1em">
|
|
<label class="checkbox-inline">
|
|
<input type="checkbox" ng-model="vm.searchVip" ng-change="vm.figureOutItemsToDisplay()"> isVip
|
|
</label>
|
|
<label class="checkbox-inline">
|
|
<input type="checkbox" ng-model="vm.searchAdmin" ng-change="vm.figureOutItemsToDisplay()"> isAdmin
|
|
</label>
|
|
<label class="checkbox-inline">
|
|
<input type="checkbox" ng-model="vm.searchOper" ng-change="vm.figureOutItemsToDisplay()"> isOper
|
|
</label>
|
|
</div>
|
|
<div class="col-md-4" style="margin-top: 1em">
|
|
<input class="form-control col-md-4" type="text" ng-model="vm.search" placeholder="Search" ng-change="vm.figureOutItemsToDisplay()"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="list-group">
|
|
<a ng-repeat="user in vm.pagedItems" ui-sref="admin.user({userId: user._id})" class="list-group-item"
|
|
ng-class="{'span-banned': user.status == 'banned'}">
|
|
<img class="ulist-avatar" ng-src="{{user.profileImageURL}}">
|
|
|
|
<h4 class="list-group-item-heading">{{user.displayName}} <span vip-flag="user"></span> -
|
|
<small>{{user.username}}</small>
|
|
</h4>
|
|
|
|
<p class="list-group-item-text pull-right small" ng-bind="user.roles"></p>
|
|
|
|
<p class="list-group-item-text" ng-bind="user.email"></p>
|
|
</a>
|
|
</div>
|
|
|
|
<ul uib-pagination boundary-links="true" max-size="8" items-per-page="vm.itemsPerPage" total-items="vm.filterLength" ng-model="vm.currentPage"
|
|
ng-change="vm.pageChanged()"
|
|
first-text="{{ 'PAGE_TEXT_FIRST' | translate}}" previous-text="{{ 'PAGE_TEXT_PREVIOUS' | translate}}"
|
|
next-text="{{ 'PAGE_TEXT_NEXT' | translate}}" last-text="{{ 'PAGE_TEXT_LAST' | translate}}">
|
|
</ul>
|
|
</section>
|