Skip to content

Instantly share code, notes, and snippets.

@jhcheung
Created November 13, 2019 03:55
Show Gist options
  • Save jhcheung/f78a8c9a5674749d6e786702e309007f to your computer and use it in GitHub Desktop.
Save jhcheung/f78a8c9a5674749d6e786702e309007f 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