mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
- content_for(:title) do
|
|
= t :orders_edit_title
|
|
|
|
- content_for :injection_data do
|
|
= inject_enterprise_and_relatives
|
|
|
|
.darkswarm
|
|
- content_for :order_cycle_form do
|
|
%closing
|
|
= t :orders_edit_headline
|
|
%p
|
|
= t :orders_edit_time
|
|
%strong
|
|
- if @order.order_cycle
|
|
= pickup_time @order.order_cycle
|
|
- else
|
|
= @order.distributor.next_collection_at
|
|
|
|
= render partial: "shopping_shared/details"
|
|
|
|
%fieldset.footer-pad
|
|
- if @order.line_items.empty?
|
|
%div.row{"data-hook" => "empty_cart"}
|
|
%p= t(:your_cart_is_empty)
|
|
%p= link_to t(:continue_shopping), main_app.shop_path, :class => 'button continue'
|
|
|
|
- else
|
|
%div{"data-hook" => "outside_cart_form"}
|
|
= form_for @order, :url => main_app.update_cart_path, :html => {:id => 'update-cart'} do |order_form|
|
|
%div{"data-hook" => "inside_cart_form"}
|
|
%div{"data-hook" => "cart_items"}
|
|
.row
|
|
= render :partial => 'form', :locals => { :order_form => order_form }
|
|
|
|
= render "spree/orders/form/cart_links"
|
|
|
|
= render partial: "shared/footer"
|