{% extends "base.html" %} {% block title %}Cart — LobsterGym Shop{% endblock %} {% block content %}
| Product | Price | Qty | Subtotal |
|---|---|---|---|
| {{ item.name }} | ${{ "%.2f"|format(item.price) }} | {{ item.quantity }} | ${{ "%.2f"|format(item.price * item.quantity) }} |
| Total | ${{ "%.2f"|format(total) }} | ||
Your cart is empty.