tap/app/views/products/new.html.erb

16 lines
355 B
Plaintext
Raw Normal View History

2014-11-24 20:45:32 +00:00
<%= form_for @product do |f| %>
<%= f.label :name %>
<%= f.text_field :name %>
<%= f.label :purchase_price %>
<%= f.number_field :purchase_price %>
<%= f.label :sale_price %>
<%= f.number_field :sale_price %>
<%= f.label :img_path %>
<%= f.text_field :img_path %>
<%= f.submit "Create product", class: "btn btn-primary" %>
<% end %>