Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joram77/59a2113c386a059bbfa444cadf9cc202 to your computer and use it in GitHub Desktop.
Save joram77/59a2113c386a059bbfa444cadf9cc202 to your computer and use it in GitHub Desktop.
fields_for not nested
<%= form_tag 'topics/edit_all' do %>
<% @topics.each do |topic| %>
<%= fields_for "topics[]", topic do |f| %>
<%= f.check_box :enabled %>
<%= f.label topic["name"] %><br />
<% end %>
<% end %>
<%= submit_tag %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment