{% extends 'base.html' %} {% load static %} {% block page_style %} {% endblock page_style %} {% block page_js %}{% endblock page_js %} {% block page_content %} {% include 'messages.html' %}
{% if cart_products|length > 0 %}
{% csrf_token %}

Proceed to check-out ?

{% else %}
Nothing to checkout, go to POS.
{% endif %}

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 %}