{% include 'layouts/product_header.html' %}
// Welcome to our company

Checkout

Returning customer? Click here to login
Have a coupon? Click here to enter your code

Billing & Shipping Details

Payment Method

you can pay with your credit and debit card.

Cash on delivery (COD)

Pay with cash upon delivery.

Cart Totals

{% set total_price =0 %} {% for c in cart_data_all %} {% set price = c.price %} {% set disc =c.discount %} {% set disc_price = price * disc /100 %} {% set a = price - disc_price %} {% set price_prd = c.buy_quantity * a %} {% set total_price = total_price + price_prd %} {% endfor %} {% set carting = 0 %} {% if total_price >=1 && total_price <= 800 %} {% set carting = 60 %} {% elseif total_price > 800 && total_price <=1500 %} {% set carting = 50 %} {% elseif total_price > 1500 %} {% set carting = 0 %} {% endif %}
{{ c.name }} × {{ c.buy_quantity }} ₹ {{ price_prd }}
Shipping and Handing ₹ {{ carting }}
Order Total {{ total_price + carting }}
{% include 'layouts/footer.html' %}