{% set profile_pg = 1 %} {% extends 'profile/profile-base.twig' %} {% block profile_content%}

{{ function('pll_e', 'Feed subscription') }}

{{ function('pll_e', 'Weekly food delivery for your pet') }}

{% if customer_orders %} {% for order in customer_orders %} {% set meta_data = order.meta_data.order_data %} {% set shipping_address = order.get_address('shipping') %}

{{ function('pll_e', 'Order from') }} {{ order.date_created|date('Y.m.d') }}

{{ order.id }}

{{ function('pll_e', 'Summary') }}:

{{ order.get_total() }}

{% set order_track = meta_data.order_number|default('') %}

{{ function('pll_e', 'Delivery address') }}

{% if meta_data.office_code %} {{ function('pll_e', 'CDEK shipping point') }}
{{ office_name }} {% else %} {{ shipping_address.city }} {{ shipping_address.address_1 }} {% endif %}

{% for item in order.get_items %} {% set product = item.get_product %} {% set thumbnail = product ? function('wp_get_attachment_image_url', product.get_image_id(), 'woocommerce_thumbnail') : function('wc_placeholder_img_src', 'woocommerce_thumbnail') %}

{{ item.name }}

{{ item.quantity }}

{{ item.total }} {{ function('get_woocommerce_currency_symbol', code) }}

{% endfor %}
{% for item in order.get_items %} {% set product = item.get_product %} {% set thumbnail = product ? function('wp_get_attachment_image_url', product.get_image_id(), 'woocommerce_thumbnail') : function('wc_placeholder_img_src', 'woocommerce_thumbnail') %} {% if thumbnail %} {% endif %} {% endfor %}
{% endfor %} {% else %}

{{ function('pll_e', 'No orders yet') }}

{% endif %}
{% endblock %}