foodsoft/app/views/finance/balancing/_edit_note.html.haml

10 lines
402 B
Plaintext
Raw Normal View History

2012-05-12 10:55:20 +02:00
= simple_form_for @order, url: update_note_finance_order_path(@order), remote: true, method: :put do |f|
.modal-header
= close_button :modal
2017-05-18 23:04:23 +02:00
%h3= t('.title')
.modal-body
2017-05-18 23:04:23 +02:00
= f.input :note, input_html: {class: 'input-xlarge', rows: 10, cols: 80}
.modal-footer
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
= f.submit t('ui.save'), class: 'btn btn-primary'