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