{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block body_class %}orders{% endblock %} {% block title %} Order {{ order.number }} | {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block header %}{{ order.user.get_full_name|default:"-" }}
{{ order.user.email|default:"-" }}
Customer checked out anonymously.
{% endif %}{{ order.total_incl_tax|currency }}
{{ order.date_placed|date:"d/m/y" }}
{{ order.date_placed|date:"H:s" }}
{{ order.status|default:"N/A" }}
Date | Event | Lines | Notes |
---|---|---|---|
{{ event.date }} | {{ event.event_type.name }} | {% for line_qty in event.line_quantities.all %} Product: {{ line_qty.line.title }} - quantity {{ line_qty.quantity }} {% endfor %} | {{ event.notes }} |
No shipping events.
{% endif %} {% endwith %}Date | Event | Amount | Lines |
---|---|---|---|
{{ event.date }} | {{ event.event_type.name }} | {{ event.amount|currency }} | {% for line_qty in event.line_quantities.all %} Product: {{ line_qty.line.title }} - quantity {{ line_qty.quantity }} {% endfor %} |
No payment events.
{% endif %} {% endwith %}Method | {{ order.shipping_method }} |
---|---|
Charge (incl tax) | {{ order.shipping_incl_tax|currency }} |
Charge (excl tax) | {{ order.shipping_excl_tax|currency }} |
Address |
{% for field in order.shipping_address.active_address_fields %}
{{ field }} {% endfor %} |
{% for field in order.billing_address.active_address_fields %}
{{ field }}
{% endfor %}
Source | Allocation | Amount debited | Amount refunded |
---|---|---|---|
{{ source.source_type }} | {{ source.amount_allocated|currency }} | {{ source.amount_debited|currency }} | {{ source.amount_refunded|currency }} |
No payment sources
{% endif %} {% endwith %} {% block tab_transactions %}No transaction data available.
{% endblock %}Voucher code | Offer name | Amount |
---|---|---|
{{ discount.voucher_code|default:"-" }} | {{ discount.offer.name }} | {{ discount.amount|currency}} |
No discounts were applied in this order.
{% endif %} {% endwith %} {% endblock %}No email data available.
{% endblock %}Date | User | Type | Message | |
---|---|---|---|---|
{{ note.date_created }} | {{ note.user }} | {{ note.note_type }} | {{ note.message|linebreaks }} | {% if note.is_editable %} Edit {% endif %} |