Sarik_Kumpan

search htmlhaml

Dec 10th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. %h2 Search result for #{@result['keyword']}
  2.  
  3. = link_to 'Back to movie list', movies_path
  4. %div
  5. - (1..@result['last_page']).each do |i|
  6.   = link_to i, search_tmdb_path(:search_terms => @result['keyword'], :select_page => i), method: :post
  7.  
  8. %table#movies
  9.   %thead
  10.     %tr
  11.       %th picture
  12.       %th Movie Title
  13.       %th Rating
  14.       %th overview
  15.   %tbody
  16.   - @result['movies'].each do |movie|
  17.     %tr
  18.       %td=image_tag get_poster(movie.poster_path)
  19.       %td=movie.title
  20.       %td=movie.vote_average
  21.       %td=movie.overview
Advertisement
Add Comment
Please, Sign In to add comment