saasbook

form_partial.html.haml

Jan 10th, 2012
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.32 KB | None | 0 0
  1. -# in _movie_form.html.haml (the partial)
  2.  
  3. = label :movie, :title, 'Title'
  4. = text_field :movie, 'title', @movie.title
  5.  
  6. = label :movie, :rating, 'Rating'
  7. = select :movie, :rating, ['G','PG','PG-13','R','NC-17'], @movie.rating
  8.  
  9. = label :movie, :release_date, 'Released On'
  10. = date_select :movie, :release_date, @movie.release_date
Add Comment
Please, Sign In to add comment