{% extends "base/f_base.html" %} {% load humanize %} {% load static %} {% block header %} {% endblock header %} {% block content %}
{% if messages %}
{% for message in messages %} {% if message.tags == 'success' %} {% elif message.tags == 'error' %} {% elif message.tags == 'warning' %} {% else %} {% endif %} {% endfor %}
{% endif %} {% for item in cart_item %}
{% csrf_token %}

{{item.product.title}}

{{item.quantity}} عدد
{% if item.product.sale_percent != 0 %}
% {{item.product.sale_percent}} {{item.product.price|intcomma}}

{{item.product.sale_price|intcomma}} تومان

{% else %}

{{item.product.price|intcomma}} تومان

{% endif %}
{% csrf_token %}
{{item.quantity}}
{% csrf_token %}
{% endfor %}
{% csrf_token %}
قیمت کل محصولات {{total_price|intcomma}} تومان
سود شما از خرید {{total_discount|intcomma}} تومان
مبلغ قابل پرداخت {{total_payable|intcomma}} تومان

اطلاعات خریدار

{% csrf_token %}
{% comment %} {% if this_shop.payment_way == 'cart-to-cart'%}

{{this_shop.cart_name}}

{{this_shop.cart_number}}

{{this_shop.cart_sheba}}

  • فایل تصویر باید حداکثر 4 مگابایت باشد.
  • فرمت مجاز فایل ها، jpg، jpeg و png است.
{% else %} {% endif %} {% endcomment %}
{% endblock content %} {% block js %} {% endblock js %}