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

{% trans "Customer Data" %}

{% trans "Full Name" %}

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


{% trans "Email" %}

{{customer_data.email}}


{% trans "Phone" %}

{{customer_data.phone}}


{% trans "Address" %}

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

{% trans "Ordered Items" %}

{% 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 %}
{% trans "To Pay:"%} {{cart.total_price}}
{% endblock %}