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.

users.html 1.1KB

123456789101112131415161718192021222324252627282930
  1. <!-- Page Content -->
  2. <div class="container">
  3. <div class="row col-sm-8 col-sm-offset-2">
  4. <table class="col-sm-12 table table-hover" lu-busy="userList">
  5. <thead>
  6. <tr>
  7. <th class="col-sm-2">Id</th>
  8. <th class="col-sm-3">Username</th>
  9. <th class="col-sm-3">Email</th>
  10. <th class="col-sm-3">Profile Id</th>
  11. </tr>
  12. </thead>
  13. <tbody>
  14. <tr ng-repeat="user in users.Data" style="cursor: pointer" ng-click="displayUser(user)">
  15. <td>{{ user.Id }}</td>
  16. <td>{{ user.Username }}</td>
  17. <td>{{ user.Email }}</td>
  18. <td>{{ user.ProfileId }}</td>
  19. </tr>
  20. </tbody>
  21. </table>
  22. <div class="col-sm-12 text-center">
  23. <a class="{{ p == page ? 'pagination-current' : 'pagination-not-current'}}" href="" ng-repeat="p in pages" ng-click="loadPage(p)">{{ p + 1 }}&nbsp;</a>
  24. </div>
  25. </div>
  26. </div>