saasbook

index.html.haml

Mar 13th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.37 KB | None | 0 0
  1. -#  This file is app/views/movies/index.html.haml
  2. %h1 All Movies
  3.  
  4. %table#movies
  5.   %thead
  6.     %tr
  7.       %th Movie Title
  8.       %th Rating
  9.       %th Release Date
  10.       %th More Info
  11.   %tbody
  12.     - @movies.each do |movie|
  13.       %tr
  14.         %td= movie.title
  15.         %td= movie.rating
  16.         %td= movie.release_date
  17.         %td= link_to "More about #{movie.title}", movie_path(movie)
Add Comment
Please, Sign In to add comment