{% extends 'base.html' %} {% block title%}Customer Details{% endblock %} {% block content %}

Orders Invoice

Date : {{myDate}}

{% for order in orders %} {% endfor %}
Order Id Cus.Id Category Product Quantity Status
{{order.id}} {{order.customer.id}} {{order.product.category}} {{order.product.name}} {{order.quantity}} {{order.status}}
{% endblock %}