{% extends 'base.html' %} {% load static %} {% block title %} Your Cart {% endblock %} {% block content %}

Ваша корзина

{% for item in cart %} {% with offer=item.offer %} {% endwith %} {% endfor %} {% if cart.discount %} {% endif %} {% endif %}
Image Product Quantity Delete Price per item Full price
{{ offer.name }}
{% csrf_token %} {{ item.update_quantity_form.quantity }} {{ item.update_quantity_form.product_slug }} {{ item.update_quantity_form.price_per_itom }} {{ item.update_quantity_form.update }}
Удалить {{ item.price }} rub. {{ item.total_price }} rub.
Total price without discount {{ cart.get_total_price }}
"{{ cart.discount.code }}" discount for ({{ cart.discount.discount }} %) - {{ cart.get_discount|floatformat:"2" }} руб.
Всего {{ cart.get_total_price|floatformat:"2" }} руб. {% if request.session.points %}
- {{ cart.get_max }} бал.
{{ cart.get_total_deduct_points }} руб.

Доступные баллы: {{ user.profile.user_points }}

{% csrf_token %}
{% csrf_token %}

Добавить товар Оформить заказ

{% endblock %}