{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
{% if products %} {% for p in products %}
{% if p.image %} {{ p.name }} {% else %} {{ p.name|slice:":1"|upper }} {% endif %}

{{ p.name }}

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

{% csrf_token %}

Subtotal

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

Your cart is empty.

Browse products and add items to your cart.

{% endif %}
{% if products %} {% endif %}
{% endblock %}