mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-28 18:19:23 +01:00
21 lines
814 B
HTML
21 lines
814 B
HTML
<section>
|
|
<div class="page-header">
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<h1>Users</h1>
|
|
</div>
|
|
<div class="col-md-4" style="margin-top: 2em">
|
|
<input class="form-control col-md-4" type="text" ng-model="search" placeholder="Search" ng-change="figureOutItemsToDisplay()" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="list-group">
|
|
<a ng-repeat="user in pagedItems" ui-sref="admin.user({userId: user._id})" class="list-group-item">
|
|
<h4 class="list-group-item-heading" ng-bind="user.username"></h4>
|
|
<p class="list-group-item-text" ng-bind="user.email"></p>
|
|
</a>
|
|
</div>
|
|
|
|
<pagination boundary-links="true" max-size="8" items-per-page="itemsPerPage" total-items="filterLength" ng-model="currentPage" ng-change="pageChanged()"></pagination>
|
|
</section>
|