{% extends "django_program/manage/base.html" %} {% block title %}Orders{% endblock %} {% block page_title %}
All ticket orders and their payment status
{% endblock %} {% block content %} {% if orders %}| Reference | User | Status | Total | Date | Actions |
|---|---|---|---|---|---|
| {{ order.reference }} | {{ order.user.email|default:order.user.username }} | {% if order.status == "paid" %} Paid {% elif order.status == "pending" %} Pending {% elif order.status == "refunded" %} Refunded {% elif order.status == "partially_refunded" %} Partial Refund {% elif order.status == "cancelled" %} Cancelled {% endif %} | ${{ order.total }} | {{ order.created_at|date:"M j, Y" }} | View |
No orders found{% if current_status %} with status "{{ current_status }}"{% endif %}.