{% load staticfiles %}
{% block title %}On-line Shop{% endblock %}
{% include 'shop/navbar.html' %}
{% with totail_items=cart|length %} {% if cart|length > 0 %} My Shopping Order:
{{ totail_items }} item {{ totail_items|pluralize }}, Kshs. {{ cart.get_total_price }}
{% else %} Your cart is empty. {% endif %} {% endwith %}
{% block content %} {% endblock %}