Skip to content

Instantly share code, notes, and snippets.

@szymon-przybyl
Created March 2, 2011 21:19
Show Gist options
  • Save szymon-przybyl/851768 to your computer and use it in GitHub Desktop.
Save szymon-przybyl/851768 to your computer and use it in GitHub Desktop.
= form_for(@movie) do |f|
= f.label :title
= f.text_field :title
= f.label :release_year
= f.select :release_year, (1900..2011).to_a.map(&:to_s)
- @genres.each do |genre|
%label
=h genre.name
= check_box_tag 'genres[]', genre.id
= f.submit 'Save'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment