saasbook

show_view.html.haml

Mar 13th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.29 KB | None | 0 0
  1. -# in app/views/movies/show.html.haml
  2.  
  3. %h2 Details about #{@movie.title}
  4.  
  5. %ul#details
  6.   %li
  7.     Rating:
  8.     = @movie.rating
  9.   %li
  10.     Released on:
  11.     = @movie.release_date.strftime("%B %d, %Y")
  12.  
  13. %h3 Description:
  14.  
  15. %p#description= @movie.description
  16.  
  17. = link_to 'Back to movie list', movies_path
Add Comment
Please, Sign In to add comment