mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
17 lines
661 B
Plaintext
17 lines
661 B
Plaintext
= render partial: 'spree/admin/shared/order_page_title'
|
|
= render partial: 'spree/admin/shared/order_tabs', locals: { current: 'Adjustments' }
|
|
|
|
- content_for :page_title do
|
|
%i.icon-arrow-right
|
|
= t(:adjustments)
|
|
|
|
- content_for :page_actions do
|
|
- unless @order.canceled?
|
|
%li= button_link_to t(:new_adjustment), new_admin_order_adjustment_url(@order), :icon => 'icon-plus'
|
|
= render partial: 'spree/admin/shared/order_links'
|
|
%li= button_link_to t(:back_to_orders_list), admin_orders_path, :icon => 'icon-arrow-left'
|
|
|
|
= render :partial => 'adjustments_table'
|
|
|
|
= button_link_to t(:continue), admin_order_payments_url(@order), :icon => 'icon-arrow-right'
|