show_courses.html.erb 399 B

1234567891011121314151617181920
  1. <%= provide(:title, @title) %>
  2. <h1><%= @title %></h1>
  3. <div class="row">
  4. <table class="table table-hover table-striped table-bordered">
  5. <thead>
  6. <th>
  7. Course
  8. </th>
  9. </thead>
  10. <tbody>
  11. <% for course in @courses %>
  12. <tr>
  13. <td>
  14. <%= link_to course.name, course %>
  15. </td>
  16. </tr>
  17. <% end %>
  18. </tbody>
  19. </table>
  20. </div>