{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %} {% if products %}
Items in cart {{ item_count }} Across {{ products|length }} product line{{ products|length|pluralize }}.
Savings captured Rs. {{ saved_amount|floatformat:2 }} Discounts already reflected from current product pricing.
Checkout readiness Secure Proceed to delivery details, then choose eSewa, Khalti, or COD.
{% endif %}
{% if products %} {% for p in products %}
{% if p.image %} {{ p.name }} {% else %} {{ p.name|slice:":1"|upper }} {% endif %}
{% if p.featured %}Featured{% endif %} {{ p.category }} {% if p.discount_percent %}Save {{ p.discount_percent }}%{% endif %}

{{ p.name }}

Unit Rs. {{ p.display_price|floatformat:2 }} • Stock {{ p.stock }}

Keep quantities updated here before moving into delivery and payment.

{% csrf_token %}

Subtotal

Rs. {{ p.subtotal|floatformat:2 }}
{% endfor %} {% else %}

Your cart is empty.

Browse products and add items to start the improved checkout experience.

Browse Products
{% endif %}
{% if products %} {% endif %}
{% endblock %}