tab/app/views/transactions/new.html.haml
2015-09-09 12:58:44 +02:00

8 lines
312 B
Plaintext

= @transaction.errors.full_messages.join(", ")
= simple_form_for @transaction do |f|
= f.hidden_field :debtor, value: current_user.name
= f.collection_select :creditor, User.all, :name, :name, {}, { class: 'select2-selector' }
= f.input :amount
= f.input :message, required: true
= f.submit "Send it!"