{% extends "django_program/base.html" %} {% block title %}Order Confirmed{% endblock %} {% block content %}
✓ Your order has been placed successfully.

Order Reference

{{ order.reference }}

{# ---- Line Items ---- #} {% for item in order.line_items.all %} {% endfor %} {% if order.discount_amount %} {% endif %}
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 }}
Status: {{ order.get_status_display }}
{% if conference %} View Order Details Return to Conference {% endif %}
{% endblock %}