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

Your Cart

{% 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.update }}
Delete {{ 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" }} руб.
Total {{ cart.get_total_price|floatformat:"2" }} руб. {% if cart.points %}
- {{ user.profile.user_points }} бал.
{{ cart.get_total_deduct_points }} руб.

Использовать баллы: {{ user.profile.user_points }}

{% csrf_token %}

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

{% endblock %}