Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RachelSa/6205ef3f4472bbb4256045aac5b06a88 to your computer and use it in GitHub Desktop.
Save RachelSa/6205ef3f4472bbb4256045aac5b06a88 to your computer and use it in GitHub Desktop.
Rails collection checkboxes with iteration
<%= f.collection_check_boxes(:program_ids, @programs, :id, :title) do |b| %>
<div> <%= b.check_box %><%= b.label { b.text } %></div>
<% end %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment