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.

79 lines
3.8 KiB

  1. <div class="container">
  2. <div class="row">
  3. <div class="col-sm-4">
  4. <div class="panel">
  5. <div class="panel-heading c_deepPurple300">
  6. <h3 class="panel-title">All users</h3>
  7. </div>
  8. <div class="panel-body" style="max-height: 500px;overflow-y: scroll;">
  9. <div class="list-group">
  10. <a ng-repeat="user in users" ng-href="#!/user/{{user._id}}" class="list-group-item">
  11. <div class="row-picture">
  12. <img class="circle" ng-src="{{user.avatar}}" alt="icon">
  13. </div>
  14. <div class="row-content">
  15. <h4 class="list-group-item-heading">{{user.username}}</h4>
  16. <p class="list-group-item-text">{{user.description}}</p>
  17. <p class="list-group-item-text">{{user.travels.length}} published travels</p>
  18. <p class="list-group-item-text">{{user.likes.length}} likes</p>
  19. </div>
  20. <div class="list-group-separator"></div>
  21. </a>
  22. </div>
  23. </div>
  24. </div>
  25. </div>
  26. <div class="col-sm-6">
  27. <div class="panel">
  28. <div class="panel-heading c_deepPurple300">
  29. <h3 class="panel-title">All travels</h3>
  30. </div>
  31. <div class="panel-body" style="max-height: 500px;overflow-y: scroll;">
  32. <table class="table table-striped table-hover ">
  33. <thead>
  34. <tr>
  35. <th>Type</th>
  36. <th>Title</th>
  37. <th>Date</th>
  38. <th>User</th>
  39. <th>nºJoins</th>
  40. <th></th>
  41. </tr>
  42. </thead>
  43. <tbody>
  44. <tr ng-repeat="travel in travels">
  45. <td>
  46. <i ng-show="travel.type=='offering'" class="fa fa-car fa-2x"></i>
  47. <i ng-show="travel.type=='asking'" class="fa fa-question fa-2x"></i>
  48. <i ng-show="travel.type=='package'" class="fa fa-archive fa-2x"></i>
  49. </td>
  50. <td>{{travel.title}}</td>
  51. <td>{{travel.date | date}}</td>
  52. <td>
  53. <a ng-href="#!/user/{{travel.user._id}}">
  54. {{travel.user.username}}
  55. </a>
  56. </td>
  57. <td>{{travel.joins.length}}</td>
  58. <td><a ng-href="#!/travel/{{travel._id}}">View</a></td>
  59. </tr>
  60. </tbody>
  61. </table>
  62. </div>
  63. </div>
  64. </div>
  65. <div class="col-sm-2">
  66. <div class="panel">
  67. <div class="panel-heading c_deepPurple300">
  68. <h3 class="panel-title">Actions</h3>
  69. </div>
  70. <div class="panel-body">
  71. <div class="btn btn-block btn-sm c_green300">Create user</div>
  72. <div class="btn btn-block btn-sm c_blue300">Create travel</div>
  73. <a href="#!/network" class="btn btn-block btn-sm c_deepPurple300">View network</a>
  74. </div>
  75. </div>
  76. </div>
  77. </div>
  78. </div>