您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

users.html 1014B

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" 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">
  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>