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.

31 lines
825 B

  1. <div class="container">
  2. <div class="row">
  3. <div class="col-sm-4">
  4. <div ng-include="'views/user_template.html'"></div>
  5. </div>
  6. <div class="col-sm-8">
  7. <div class="card">
  8. <table class="table table-striped table-hover ">
  9. <thead>
  10. <tr>
  11. <th>#</th>
  12. <th>Title</th>
  13. <th>Description</th>
  14. <th>Accuracy</th>
  15. <th>Rating</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. <tr ng-repeat="model in user.models">
  20. <td>1</td>
  21. <td>{{model.title}}</td>
  22. <td>{{model.description}}</td>
  23. <td>{{model.accuracy}}</td>
  24. <td>{{model.rating}}</td>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>
  30. </div>
  31. </div>