{% extends "django_program/manage/base.html" %} {% block title %}Orders{% endblock %} {% block page_title %}

Orders

All ticket orders and their payment status

{% endblock %} {% block content %}
{% if current_status %} Clear Filter {% endif %}
{% if orders %} {% for order in orders %} {% endfor %}
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
{% if is_paginated %} {% endif %} {% else %}

No orders found{% if current_status %} with status "{{ current_status }}"{% endif %}.

{% endif %} {% endblock %}