2011-06-09 21:35:05 +02:00
|
|
|
%tr.transaction
|
|
|
|
%td
|
|
|
|
= select_tag 'financial_transactions[][ordergroup_id]',
|
2015-04-17 18:27:50 +02:00
|
|
|
options_for_select(Ordergroup.undeleted.order(:name).map { |g| [ g.name, g.id ] })
|
2012-11-10 16:44:05 +01:00
|
|
|
%td= text_field_tag 'financial_transactions[][amount]', nil, class: 'input-small'
|
2013-02-11 03:57:33 +01:00
|
|
|
%td= link_to t('.remove'), "#", :title => t('.remove_group'), 'data-remove-transaction' => true,
|
2014-02-20 15:04:53 +01:00
|
|
|
class: 'btn btn-small'
|