{% extends "base.html" %} {% block styles %} {% endblock %} {% block content %}
| Product | Quantity | Price | Subtotal |
|---|---|---|---|
|
{{ item.product.name }}
{% if item.selected_size or item.selected_color %}
{% if item.selected_size %}Size: {{ item.selected_size }}{% endif %}
{% if item.selected_color %} | Color: {{ item.selected_color }}{% endif %}
{% endif %}
|
{{ item.quantity }} | ${{ "%.2f"|format(item.product.price) }} | ${{ "%.2f"|format(item.product.price * item.quantity) }} |
No items in this order.