Guest User

Untitled

a guest
May 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <% form_for(@user) do |f| %>
  2. <p>
  3. <%= f.label :name %><br />
  4. <%= f.text_field :name %>
  5. </p>
  6.  
  7. <% f.fields_for :custom, @user.custom do |custom_form| %>
  8. <% custom_form.object.marshal_dump.each_key do |custom_field| %>
  9. <p>
  10. <%= custom_form.label custom_field %><br />
  11. <%= custom_form.text_field custom_field %>
  12. </p>
  13. <% end %>
  14. <% end %>
  15. <p>
  16. <%= f.submit 'Update' %>
  17. </p>
  18. <% end %>
Add Comment
Please, Sign In to add comment