foodsoft/app/views/finance/balancing/_edit_note.html.haml
2013-04-08 14:27:23 +02:00

9 lines
No EOL
422 B
Text

= simple_form_for @order, url: update_note_finance_order_path(@order), remote: true, method: :put do |f|
.modal-header
= link_to 'x', '#', class: 'close', data: {dismiss: 'modal'}
%h3 Notiz bearbeiten
.modal-body
= f.input :note, input_html: {class: 'input-xlarge'}
.modal-footer
= link_to 'Schließen', '#', class: 'btn', data: {dismiss: 'modal'}
= f.submit "Speichern", class: 'btn btn-primary'