f6ba21832d
Conflicts: app/controllers/articles_controller.rb app/views/articles/_form.html.haml app/views/articles/sync.html.haml app/views/finance/balancing/_edit_note.html.haml app/views/finance/group_order_articles/_form.html.haml app/views/finance/order_articles/_edit.html.haml app/views/finance/order_articles/_new.html.haml app/views/group_orders/show.html.haml app/views/invites/_modal_form.html.haml
10 lines
452 B
Text
10 lines
452 B
Text
= simple_form_for @order, url: update_note_finance_order_path(@order), remote: true, method: :put do |f|
|
|
.modal-header
|
|
= link_to t('ui.marks.close').html_safe, '#', class: 'close', data: {dismiss: 'modal'}
|
|
%h3 Notiz bearbeiten
|
|
.modal-body
|
|
= f.input :note, input_html: {class: 'input-xlarge'}
|
|
.modal-footer
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
|
= f.submit t('ui.save'), class: 'btn btn-primary'
|
|
|