Created
June 30, 2014 14:55
-
-
Save aprilrabkin/407cb86befe4bc4493c1 to your computer and use it in GitHub Desktop.
Form helper for collection boxes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%= 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