{% extends 'base.html' %} {% load static %} {% load custom_markdown custom_filters %} {% block title %}Order Support - #{{ order.id }}{% endblock %} {% block on_page_css %} {% endblock on_page_css %} {% block content %}
Placed on {{ order.created|date:"F j, Y" }}
{{ order.delivery_address|linebreaks }}
Method: {{ order.get_shipping_method_display }}
{% if order.tracking_number %}Tracking: {{ order.tracking_number }}
Carrier: {{ order.carrier }}
{% endif %}Total Amount: ${{ order.total_amount }}
Status: {{ order.get_status_display }}
{% if order.estimated_delivery %}Estimated Delivery: {{ order.estimated_delivery|date:"F j, Y" }}
{% endif %}| Product | Category | Quantity | Price | Total |
|---|---|---|---|---|
| {{ item.product.name }} | {{ item.product.category }} | {{ item.quantity }} | ${{ item.product.price }} | ${{ item.quantity|multiply:item.product.price }} |
| Total: | ${{ order.total_amount }} | |||
{{ tracking.timestamp|date:"F j, Y g:i A" }}
{% if tracking.location %}Location: {{ tracking.location }}
{% endif %} {% if tracking.description %}{{ tracking.description }}
{% endif %}No tracking updates available yet.
{% endfor %}