index.html.haml 764 B

1234567891011121314151617181920212223242526272829303132
  1. %h1 Listing courses
  2. %table
  3. %tr
  4. %th Title
  5. %th Description
  6. %th User
  7. %th Language
  8. %th Prerequisites
  9. %th Starts in
  10. %th Duration
  11. %th
  12. %th
  13. %th
  14. - @courses.each do |course|
  15. %tr
  16. %td= course.title
  17. %td= course.description
  18. %td= course.user.handle
  19. %td= course.language
  20. %td= course.prerequisites
  21. %td= distance_of_time_in_words(Time.now, course.starts_at)
  22. %td= course.duration.to_s + " h"
  23. %td= link_to 'Show', course, class: "button"
  24. %td= link_to 'Edit', edit_course_path(course), class: "button"
  25. %td= link_to 'Destroy', course, :method => :delete, :data => { :confirm => 'Are you sure?' }, class: "button"
  26. %br
  27. = link_to 'New Course', new_course_path, class: "button"