mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-25 01:23:23 +00:00
28 lines
738 B
Plaintext
28 lines
738 B
Plaintext
.columns.omega.six
|
|
%fieldset#shipping
|
|
%legend Distributor
|
|
%h2= @order.distributor.name
|
|
%p
|
|
%strong Address:
|
|
%br/
|
|
= render 'spree/shared/address', :address => @order.distributor.pickup_address
|
|
%p
|
|
%strong Next collection time:
|
|
%br/
|
|
= @order.distributor.next_collection_at
|
|
%p
|
|
%strong Regular collection times:
|
|
%br/
|
|
= @order.distributor.pickup_times
|
|
%p
|
|
%strong Contact:
|
|
%br/
|
|
= @order.distributor.contact
|
|
%br/
|
|
= "Phone: #{@order.distributor.phone}"
|
|
%br/
|
|
= "Email: #{@order.distributor.email}"
|
|
%p= @order.distributor.description
|
|
%p= link_to @order.distributor.url, @order.distributor.url if @order.distributor.url
|
|
|