Skip to content

Instantly share code, notes, and snippets.

@aprilrabkin
Created June 30, 2014 14:55
Show Gist options
  • Save aprilrabkin/407cb86befe4bc4493c1 to your computer and use it in GitHub Desktop.
Save aprilrabkin/407cb86befe4bc4493c1 to your computer and use it in GitHub Desktop.
Form helper for collection boxes
<%= form_for(@post) do |f| %>
<%= f.label :name %><br>
<%= f.text_field :name %><br>
<%= f.label :content %><br>
<%= f.text_area :content %><br>
Tags:
<%= f.collection_check_boxes :tag_ids, Tag.all, :id, :name %><br>
<%= f.submit %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment