<%= f.hidden_field :id %>
<%= f.hidden_field :_destroy %>
|
<%= f.text_field :description,
size: 50,
placeholder: "Description",
:no_label => true %>
|
<%= f.number_field :quantity,
step: 1,
min: 1,
style: "width:90px;",
:no_label => true %>
|
<%= f.number_field :unit_price,
step: 0.01,
style: "width:120px;",
:no_label => true %>
|
|