mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2026-04-02 08:21:57 -04:00
34 lines
704 B
Plaintext
34 lines
704 B
Plaintext
<tr class="line-item">
|
|
<%= f.hidden_field :id %>
|
|
<%= f.hidden_field :_destroy %>
|
|
|
|
<td>
|
|
<%= f.text_field :description,
|
|
size: 50,
|
|
placeholder: "Description",
|
|
:no_label => true %>
|
|
</td>
|
|
|
|
<td>
|
|
<%= f.number_field :quantity,
|
|
step: 1,
|
|
min: 1,
|
|
style: "width:90px;",
|
|
:no_label => true %>
|
|
</td>
|
|
|
|
<td>
|
|
<%= f.number_field :unit_price,
|
|
step: 0.01,
|
|
style: "width:120px;",
|
|
:no_label => true %>
|
|
</td>
|
|
|
|
<td style="text-align:center;">
|
|
<button type="button"
|
|
class="icon-only icon-del"
|
|
title="Remove"
|
|
data-nested-form-remove>
|
|
</button>
|
|
</td>
|
|
</tr> |