{% load static %} {% block title %}Mój sklep{% endblock %}
{% with total_items=cart|length %} {% if cart|length > 0 %} Koszyk: {{ total_items }} produkt{{ total_items|pluralize:"y" }}, {{ cart.get_total_price }} zł {% else %} Koszyk jest pusty. {% endif %} {% endwith %}
{% block content %} {% endblock %}