Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

users.html 1.1KB

123456789101112131415161718192021222324252627
  1. <!-- Page Content -->
  2. <div class="container">
  3. <div class="row col-sm-8 col-sm-offset-2" lu-busy="userList">
  4. <table class="col-sm-12 table table-hover">
  5. <thead>
  6. <tr>
  7. <th class="col-sm-1">Id</th>
  8. <th class="col-sm-4">Username</th>
  9. <th class="col-sm-5">Email</th>
  10. <th class="col-sm-2">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>