mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-20 14:22:25 +01:00
Many issues arise when using angular-bootstrap 0.13. Migration to 1.0 is straightforward, offers a more stable interface, extra directives and fixes many bugs. Migration guide: https://github.com/angular-ui/bootstrap/wiki/Migration-guide-for-prefixes Fixes #1142 Fixes #1131
22 lines
903 B
HTML
22 lines
903 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 pull-right small" ng-bind="user.roles"></p>
|
|
<p class="list-group-item-text" ng-bind="user.email"></p>
|
|
</a>
|
|
</div>
|
|
|
|
<uib-pagination boundary-links="true" max-size="8" items-per-page="itemsPerPage" total-items="filterLength" ng-model="currentPage" ng-change="pageChanged()"></uib-pagination>
|
|
</section>
|