{# templates/adminpanel/order_detail.html #} {% extends "adminpanel/base.html" %} {% block pagetitle %}Order #{{ order.id }}{% endblock %} {% block page_header %}Order #{{ order.id }}{% endblock %} {% block header_actions %} Back {% endblock %} {% block content %}
| Product | Qty | Unit | Subtotal |
|---|---|---|---|
| {{ it.title }} | {{ it.qty }} | $ {{ it.unit_price }} | $ {{ it.line_total }} |
| No items. | |||
| Total | $ {{ order.total }} | ||