{% extends 'app/base.html' %} {% load static %} {% block title %} Order {% endblock title %} {% block content %}

Welcome {{request.user}}

{% for order in order_placed reversed %}

Product : {{order.product.title}}

Quantity : {{order.quantity}}

Price : {{order.total_cost}}

Order Status : {{order.status}}

{% if order.status == "Accepted" %}
{% elif order.status == "Packed" %}
{% elif order.status == "On The Way" %}
{% elif order.status == "Delivered" %}
{% elif order.status == "Cancel" %}
{% endif %}
{% empty %}

No orders found

{% endfor %}
{% endblock content %}