Orders

View commerce orders from the package-owned admin UI.

{% if status or product_slug %}

Filter: {% if status %}status={{ status }}{% endif %} {% if product_slug %} product={{ product_slug }}{% endif %}

{% endif %} {% if orders %} {% for order in orders %} {% endfor %}
Order ID Buyer Product Price Amount Status Payment reference Actions
{{ order.public_id }} {{ order.buyer.full_name }}
{{ order.buyer.email }}
{{ order.product_slug }} {{ order.price_code }} {{ order.amount.currency }} {{ order.amount.major() }} {{ order.status.value }} {{ order.payment_reference or "" }} Edit order
{% else %}

No orders found.

{% endif %}