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

9 lines
422 B
Text
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
= 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'