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

Twoje dane:

Imię i Nazwisko

{{customer_data.name}} {{customer_data.surname}}


Email

{{customer_data.email}}


Numer telefonu

{{customer_data.phone}}


Adres

{{customer_data.city}}, {{customer_data.zip_code}}
{{customer_data.street}}

Zamówione przedmioty

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

Wykonawca: {{group.author.display_name}}

{% for item in group.products %} {% include 'store/partials/summary_cart_item.html' %} {% endfor %} {% if cart.delivery_info %} {% with delivery=cart.delivery_info %} {% include 'store/partials/delivery_cart_item.html' %} {% endwith %} {% endif %}
W sumie: {{group.group_price}} zł
{% endif %} {% endfor %}
Do zapłaty: {{cart.total_price}} zł
{% csrf_token %}
{% endblock %}