{% extends 'base.html' %} {% block content %} {% load cart %} {% load custom_filter %}

Your Orders


{% for order in orders %} {% if order.status %} {%else%} {% endif %} {% endfor %}
Sno. Image Product Date Price Quantity Total Status
{{forloop.counter}} {{order.product.name}} {{order.date}} {{order.price|currency}} {{order.quantity}} {{order.quantity|multiply:order.price|currency}}CompletedPending
{% endblock %}