How to “Create” after second step _form?
问题 So in step one the user creates his challenge. <%= form_for(@challenge) do |f| %> <%= f.text_field :action %> <%= f.submit %> <% end %> Then he is directed to another _form to finish adding details about that challenge. <%= form_for(@challenge) do |f| %> <%= f.text_field :action %> <%= f.date_select :deadline %> <%= f.check_box :conceal %> <%= f.submit %> <% end %> Once he adds those details and clicks "Save" I want the challenge to be created via the Create action of the challenges