{% extends "django_program/base.html" %} {% block title %}Order Confirmed{% endblock %} {% block content %}
Order Reference
{{ order.reference }}
| Description | Qty | Unit Price | Line Total |
|---|---|---|---|
| {{ item.description }} | {{ item.quantity }} | ${{ item.unit_price }} | ${{ item.line_total }} |
| Subtotal | ${{ order.subtotal }} | ||
| Discount | -${{ order.discount_amount }} | ||
| Total | ${{ order.total }} | ||