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

18 lines
433 B
Text
Raw Normal View History

<%= form_for @product, html: { multipart: true } do |f| %>
<%= render 'application/errors', model: @product %>
2014-11-24 21:45:32 +01:00
<%= 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 :avatar %>
<%= f.file_field :avatar %>
2014-11-24 21:45:32 +01:00
<%= f.submit "Create product", class: "btn btn-primary" %>
<% end %>