{% extends 'base.html' %} {% block title %} Order {{ order_id }} {% endblock %} {% block main %}

Order Number: {{ order_id }}



Timeline


Order Placed on:

{{ order["order_date"] }}

{% if active == "1" %}

Order Dispatched on:

{{ order["dispatch_date"] }}

{% else %}

Order Received on:

{{ order["delivery_date"] }}

{% endif %}
{% if active == "1" %}

Expected Time of Arrival:

{{ order["ETA"] }}

{% endif %}

Your Delivery Partner



{{ order["da_name"] }}

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed euismod, nunc ut tincidunt luctus, nunc nisl aliquam nisl, eget aliquam nisl nisl sit amet sapien. Sed euismod, nunc ut tincidunt luctus, nunc nisl aliquam nisl, eget aliquam nisl nisl sit amet sapien.

{{ order["da_email"] }}

{{ order["da_phone"] }}



Order Details


Total {{ products|length }} item(s) in order


{% for product in products %}

{{ product["name"] }}

By {{ product["sname"] }}

{{ product["product_description"][:150] }} ...

Quantity: {{ product["quantity"] }}

Total: $ {{ product["total"] }}

{% endfor %}

Order Summary


Here is a summary of your order.

{% for item in products %} {% endfor %}
ID Item Quantity
{{ item["productID"] }} {{ item["name"] }} {{ item["quantity"] }}

Total: $ {{ total }}


Back

{% endblock %}