{% extends 'base.html' %} {% load static %} {% block page_style %} {% endblock page_style %} {% block page_js %} {% endblock page_js %} {% block page_content %} {% include 'messages.html' %}

Search products to start selling

Shopping Cart

KES : 0.0

{% if cart_products|length > 0 %} {% for product in cart_products %} {% endfor %}
ItemQtyPriceTotal
{{ product.product_name }} {{ product.quantity }} {{ product.unit_price }} {{ product.total }}
{% else %}
No items, shopping cart is empty
{% endif %}
{% endblock page_content %}