Advertisement
saasbook

Simple show.html.haml view

Feb 1st, 2012
3,234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.24 KB | None | 0 0
  1. -# app/views/movies/show.html.haml
  2.  
  3. %h2 Details about #{@movie.title}
  4.  
  5. %ul
  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= @movie.description
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement