{% extends 'base.html' %} {% block content %}

Your Shopping Cart

Review your selected wellness products

{% if cart_items %}
{% for item in cart_items %}
{% if item.product.image_url %} product image {% else %} product image {% endif %}

{{ item.product.name }}

{% if item.product.description %}

{{ item.product.description }}

{% endif %}

₦{{ "%.2f"|format(item.product.price) }} each

N {{ "%.2f"|format(item.quantity * item.product.price) }}

{% endfor %}

Total: N {{ "%.2f"|format(total_price) }}

{% else %}

Your cart is empty

Add some wellness products to get started!

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