{% extends "base.html" %} {% block title %}Order Confirmed — LobsterGym Shop{% endblock %} {% block content %}
Order ID: {{ order.order_id }}
Ship to: {{ order.shipping_name }}
Address: {{ order.shipping_address }}
Total: ${{ "%.2f"|format(order.total) }}
| Product | Qty | Price |
|---|---|---|
| {{ item.name }} | {{ item.quantity }} | ${{ "%.2f"|format(item.price * item.quantity) }} |