4 lines
173 B
Text
4 lines
173 B
Text
= form_for @transaction do |f|
|
|
= f.collection_select :creditor, User.all, :id, :name, {}, { class: 'select2-selector' }
|
|
= f.number_field :amount
|
|
= f.submit "Send it!"
|