7 lines
381 B
Text
7 lines
381 B
Text
%tr.transaction
|
|
%td
|
|
= select_tag 'financial_transactions[][ordergroup_id]',
|
|
options_for_select(Ordergroup.undeleted.order(:name).map { |g| [ g.name, g.id ] })
|
|
%td= text_field_tag 'financial_transactions[][amount]', nil, class: 'input-small'
|
|
%td= link_to t('.remove'), "#", :title => t('.remove_group'), 'data-remove-transaction' => true,
|
|
class: 'btn btn-small'
|