{% load i18n static %} {% block title %}{% translate "My shop" %}{% endblock %}
{% with total_items=cart|length %} {% if total_items > 0 %} {% translate "Your cart" %}: {% blocktranslate with total=cart.get_total_price count items=total_items %} {{ items }} item, ${{ total }} {% plural %} {{ items }} items, ${{ total }} {% endblocktranslate %} {% elif not order %} {% translate "Your cart is empty." %} {% endif %} {% endwith %}
{% block content %} {% endblock %}