2015-09-08 21:07:00 +02:00
|
|
|
= @transaction.errors.full_messages.join(", ")
|
2015-09-09 11:24:45 +02:00
|
|
|
= simple_form_for @transaction do |f|
|
2015-09-09 12:58:44 +02:00
|
|
|
= f.hidden_field :debtor, value: current_user.name
|
|
|
|
= f.collection_select :creditor, User.all, :name, :name, {}, { class: 'select2-selector' }
|
2015-09-09 11:24:45 +02:00
|
|
|
= f.input :amount
|
|
|
|
= f.input :message, required: true
|
2015-09-08 16:19:48 +02:00
|
|
|
= f.submit "Send it!"
|