{% extends "base.html" %} {% block styles %} {% endblock %} {% block content %}

Your Shopping Cart

{% if items %}
{% for item in items %} {% endfor %}
Product Price Quantity Subtotal Actions
{{ item.product.name }}

{{ item.product.name }}

{{ item.product.description[:80] }}...

{% if item.product.stock > 10 %} ✓ In Stock {% elif item.product.stock > 0 %} ⚠ Low Stock ({{ item.product.stock }} left) {% else %} ✗ Out of Stock {% endif %}
${{ "%.2f"|format(item.product.price) }}
Max: {{ item.max_quantity }}
${{ "%.2f"|format(item.subtotal) }}

Order Summary

Subtotal: ${{ "%.2f"|format(total) }}
Shipping: Free
Total: ${{ "%.2f"|format(total) }}
{% else %}
🛒

Your cart is empty

Add some products to your cart and they will appear here.

Browse Products
{% endif %}
{% endblock %}