saasbook

edit.html.haml

Apr 2nd, 2014
1,046
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.34 KB | None | 0 0
  1. %h2 Edit Movie
  2.  
  3. = form_tag movie_path(@movie), :method => :put do
  4.  
  5.   = label :movie, :title, 'Title'
  6.   = text_field :movie, 'title'
  7.  
  8.   = label :movie, :rating, 'Rating'
  9.   = select :movie, :rating, ['G','PG','PG-13','R','NC-17']
  10.  
  11.   = label :movie, :release_date, 'Released On'
  12.   = date_select :movie, :release_date
  13.  
  14.   = submit_tag 'Save Changes'
Add Comment
Please, Sign In to add comment