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

🛒 Your Cart

{% if cart %}
{% for item in cart %} {% endfor %}
ProductPriceQtySubtotal
{{ item.name }} ${{ "%.2f"|format(item.price) }} {{ item.quantity }} ${{ "%.2f"|format(item.price * item.quantity) }}
Total ${{ "%.2f"|format(total) }}
Proceed to Checkout
{% else %}

Your cart is empty.

{% endif %} ← Continue Shopping {% endblock %}