{% extends "django_program/base.html" %} {% block title %}Your Cart{% endblock %} {% block content %} Back to tickets
| Item | Qty | Unit Price | Total | Remove |
|---|---|---|---|---|
| {% if item.ticket_type %}{{ item.ticket_type.name }}{% elif item.addon %}{{ item.addon.name }}{% endif %} | {{ item.quantity }} | ${{ item.unit_price }} | ${{ item.line_total }} |
Your cart is empty.
Browse available tickets to get started.