show.html.haml 526 B

123456789101112131415161718192021222324252627282930
  1. %p#notice= notice
  2. %p
  3. %b Title:
  4. = @course.title
  5. %p
  6. %b Description:
  7. = @course.description
  8. %p
  9. %b Made by:
  10. = @course.user.handle
  11. %p
  12. %b Language:
  13. = @course.language
  14. %p
  15. %b Prerequisites:
  16. = @course.prerequisites
  17. %p
  18. %b Starts in:
  19. = distance_of_time_in_words(Time.now, @course.starts_at)
  20. %p
  21. %b Duration:
  22. = @course.duration
  23. .row
  24. = link_to 'Edit', edit_course_path(@course), class: "button"
  25. = link_to 'Run', course_start_path(@course), class: "button"
  26. = link_to 'Back', courses_path, class: "button"