show.html.erb 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <% provide(:title, @course.name) %>
  2. <div class="row">
  3. <div class="col-md-12">
  4. <h1><%= @course.name %></h1>
  5. </div>
  6. </div>
  7. <div class="row">
  8. <div class="col-md-6">
  9. <div class="panel panel-primary">
  10. <div class="panel-heading">
  11. Teachers
  12. </div>
  13. <table class="panel-body table table-striped table-bordered table-hover">
  14. <tbody>
  15. <% for teacher in @course.users.merge(CourseParticipation.teachers) %>
  16. <tr>
  17. <td>
  18. <%= render teacher %>
  19. </td>
  20. </tr>
  21. <% end %>
  22. </tbody>
  23. </table>
  24. </div>
  25. <div class="panel panel-primary">
  26. <div class="panel-heading">
  27. Students
  28. </div>
  29. <table class="panel-body table table-striped table-bordered table-hover">
  30. <tbody>
  31. <% for student in @course.users.merge(CourseParticipation.students) %>
  32. <tr>
  33. <td>
  34. <%= render student %>
  35. </td>
  36. </tr>
  37. <% end %>
  38. </tbody>
  39. </table>
  40. </div>
  41. </div>
  42. </div>