Guest User

Untitled

a guest
Apr 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <h2>Editing product</h2>
  2.  
  3. <%= error_messages_for :product %>
  4.  
  5. <% form_for(@product) do |f| %>
  6. <p>
  7. <b>Kind of Product</b><br />
  8. <%= f.text_field :kind %>
  9. </p>
  10.  
  11. <p>
  12. <b>Description</b><br />
  13. <%= f.text_field :description %>
  14. </p>
  15.  
  16. <p>
  17. <b>Price</b><br />
  18. <% fields_for "product[line_item_attributes][]", @product.line_item do |lif| %>
  19. <%= lif.text_field :price %>
  20. <% end %>
  21. </p>
  22.  
  23. <p>
  24. <%= f.submit "Update" %>
  25. </p>
  26. <% end %>
  27.  
  28. <%= link_to 'Show', @product %> |
  29. <%= link_to 'Back', products_path %>
Add Comment
Please, Sign In to add comment