{% extends 'base.html' %} {% load static %} {% block content %}

Koszyk

{% for group in cart.display_items %} {% if group.products %}

Wykonawca: {{group.author.display_name}}

{% for item in group.products %} {% include 'store/partials/cart_item.html' %} {% endfor %} {% endif %} {% endfor %}
W sumie do zapłaty: {{cart.total_price}}
{% endblock %}