Sarik_Kumpan

add add button

Dec 11th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. %table#movies
  2. %thead
  3. %tr
  4. %th picture
  5. %th Movie Title
  6. %th Rating
  7. %th overview
  8. %th Add This movie
  9. %tbody
  10. - @result['movies'].each do |movie|
  11. %tr
  12. %td=image_tag get_poster(movie.poster_path)
  13. %td=movie.title
  14. %td=movie.vote_average
  15. %td=movie.overview
  16. %td=link_to 'Add '+movie.title+' Movie', movies_path
Advertisement
Add Comment
Please, Sign In to add comment