{% extends "base.html" %} {% block title %}Checkout — LobsterGym Shop{% endblock %} {% block content %}

💳 Checkout

Order Summary

{% for item in cart %} {% endfor %}
ProductQtySubtotal
{{ item.name }} {{ item.quantity }} ${{ "%.2f"|format(item.price * item.quantity) }}
Total${{ "%.2f"|format(total) }}

Shipping Details

{% endblock %}