tab/app/views/transactions/new.html.haml
2015-09-09 11:24:45 +02:00

7 lines
260 B
Plaintext

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