{% extends 'store/base.html' %}
{% block title %}Invoice detail{% endblock %}
{% load crispy_forms_tags %}
{% block content %}
Order confirmation
|
|
|
| InventoryMS |
|
|
Hello, {{invoice.customer_name}}
Thank you for shopping from our store and for your order.
|
|
|
|
Invoice
|
|
|
ORDER #800000025
{{invoice.date}}
|
|
|
|
|
|
|
Item
|
Quantity
|
Subtotal
|
|
|
|
{{invoice.item.name}}
|
{{invoice.quantity}} |
Ksh {{invoice.price_per_item}} |
|
|
|
|
|
|
Subtotal
|
{{invoice.total}}
|
|
Shipping & Handling
|
{{invoice.shipping}}
|
|
Grand Total
|
{{invoice.grand_total}}
|
|
|
{% endblock %}