Advertisement
Guest User

Untitled

a guest
Oct 31st, 2017
578
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
COBOL 0.42 KB | None | 0 0
  1. %h2 Edit Description #{@movie.title}
  2.  
  3. =form_tag movie_path, :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.   = label :movie, :description, 'Description'
  15.   = text_field :movie, :description
  16.  
  17.   ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement