{% load i18n %} {% load static %} {% block title %}{% trans "My shop" %}{% endblock %}
{% with total_items=cart|length %} {% if cart|length > 0 %} {% trans "Your cart" %}: {% blocktrans with total_items_plural=total_items|pluralize total_price=cart.get_total_price %} {{ total_items }} item{{ total_items_plural }}, ${{ total_price }} {% endblocktrans %} {% else %} {% trans "Your cart is empty." %} {% endif %} {% endwith %}
{% block content %} {% endblock %}