tab/app/views/transactions/new.html.haml
2015-09-09 17:06:39 +02:00

9 lines
347 B
Plaintext

= render 'partials/form_errors', object: @transaction
= 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
.pure-controls
= f.button :submit, "Send it!"