_lectures_panel.html.erb 815 B

1234567891011121314151617181920212223242526272829
  1. <div class="panel panel-default">
  2. <div class="panel-heading">
  3. Lectures
  4. </div>
  5. <table class="panel-body table table-striped table-bordered table-hover">
  6. <tbody>
  7. <% for lecture in @course.lectures do %>
  8. <tr>
  9. <td>
  10. <%= link_to lecture.starts_at, lecture %>
  11. </td>
  12. <td>
  13. <%= lecture.location %>
  14. </td>
  15. <td>
  16. <%= truncate(lecture.description, length: 70) %>
  17. </td>
  18. <% if current_user.is_course_teacher?(@course) %>
  19. <td>
  20. <%= link_to edit_lecture_path(lecture), class: "btn btn-primary" do %>
  21. <%= fa_icon "edit", text: "Edit" %>
  22. <% end %>
  23. </td>
  24. <% end %>
  25. </tr>
  26. <% end %>
  27. </tbody>
  28. </table>
  29. </div>