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

Pharsatikar Supermarket

Butwal,Suddhodhan-1,Rupandehi


Customer Name : {{customers.name}}
Customer Id : {{customers.id}}
Date : {{myDate}}

Invoice

{% for order in customers_order %} {% empty %} {% endfor %}
Product Quantity Per Price Subtotal
{{order.product.name}} {{order.quantity}} {{order.product.price}} {{order.get_total_item_price}}
{{customers.name }} record is empty ! Please place the order
Total Price {{customer_total_price}}
{% endblock %}