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