{% extends 'base.html.twig' %} {% block body %}

Hello User (not User? Log out)
From your account dashboard you can view your recent orders, manage your shipping and billing addresses, and edit your password and account details.

My Orders
{% set p=1 %} {% set pr=0 %} {% if(FTCHOrdr|length)>0 %} {% for prodcrt in FTCHOrdr %} {% set pr=pr+1 %} {% set p=p+1 %} {% endfor %} {% else %} {% endif %}
S.No Order Date Order Id Total Shipped Address
{{p}} {{prodcrt['order_date']|date('d-m-Y') }}
{{prodcrt['order_date']|date('h:i:s') }}
{{prodcrt['order_id']}} Rs.{{prodcrt['price']|number_format(2, '.', ',') }}
{{(prodcrt['address']|slice(0, 40) |raw) }} {{(prodcrt['address'] |raw) }}

No order has been made yet.

GO SHOP

No downloads available yet.

GO SHOP

The following addresses will be used on the checkout page by default.

Billing Address

{{FTCHAddr[0]['billing_first']}}
{{FTCHAddr[0]['billing_last']}}
{{FTCHAddr[0]['billing_street1']}}, {{FTCHAddr[0]['billing_street2']}}
{{FTCHAddr[0]['billing_city']}}
{{FTCHAddr[0]['billing_country']}}
{{FTCHAddr[0]['billing_zip']}}
{{FTCHAddr[0]['billing_phone']}}
{{FTCHAddr[0]['billing_email']}}
Edit

Shipping Address

{{FTCHAddr[0]['shipping_first']}}
{{FTCHAddr[0]['shipping_last']}}
{{FTCHAddr[0]['shipping_street1']}}, {{FTCHAddr[0]['shipping_street2']}}
{{FTCHAddr[0]['shipping_city']}}
{{FTCHAddr[0]['shipping_country']}}
{{FTCHAddr[0]['shipping_zip']}}
{{FTCHAddr[0]['shipping_phone']}}
{{FTCHAddr[0]['shipping_email']}}

Edit

This will be how your name will be displayed in the account section and in reviews
{% endblock %}