{% extends 'base.html' %} {% load static %} {% block title %}Customer-Order{% endblock %} {% block javascript %} {% endblock %} {% block content %} {% include 'navbar.html' %}


{% include 'message.html' %}
Total Orders
{{order_count}}
Total Price
{{customer_total_price}}

Order Details of {{customers.name}}


{% for order in orders %} {% empty %} {% endfor %}
Product Created Status Quantity Per Price Subtotal Action
{{order.product.name}} {{order.created_at}} {{order.status}} {{order.quantity}} {{order.product.unit}} {{order.product.price}} {{order.get_total_item_price}}
Order is empty.Please Place the Order!
{% endblock%}