saasbook

reviews_for_movie.html.haml

Mar 13th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.33 KB | None | 0 0
  1. %h1 Reviews for #{@movie.title}
  2.  
  3. - if @current_user
  4.   = link_to new_movie_review_path(@movie), 'Add your own review!'
  5. - else
  6.   = link_to login_path, 'Log in to add your own reviews'
  7.  
  8. #reviews
  9.   - @reviews.each do |review|
  10.     %div[review]
  11.       %h3 #{review.moviegoer.name} gave it #{review.potatoes} potatoes
  12.       %p= review.comments
Add Comment
Please, Sign In to add comment