Created
November 13, 2019 03:55
-
-
Save jhcheung/f78a8c9a5674749d6e786702e309007f to your computer and use it in GitHub Desktop.
fields_for not nested
This file contains hidden or 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_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