{% load static %} {% block title %}Mój sklep{% endblock %}
{% with total_items=cart|length %} {% if cart|length > 0 %} Twój koszyk: {{ total_items }} item{{ total_items|pluralize }}, ${{ cart.get_total_price }} {% else %} Koszyk jest pusty. {% endif %} {% endwith %}
{% block content %} {% endblock %}