{% extends 'base.html' %} {% load static %} {% block metadescription %} This is the cart page. proceed to review your items and place the order {% endblock %} {% block title %} Cart-Mintmade Fashion PVT LTD {% endblock %} {% block content %} {% if not cart_items %}

Your Shopping cart is empty


Please Click Hereto continue

{% else %}

Your Shopping Cart


{% for cart_item in cart_items %} {% if cart_item.quantity < cart_item.product.stock %} {% else %} {% endif %} {% endfor %}
Your Items
{{cart_item.product.name}}
SKU: {{cart_item_product.id}}
price: $ {{cart_item.product.price }}
Qty: {{cart_item.quantity}} x $ {{cart_item}}
$ {{cart_item.sub_total}}        
Checkout
Please review your shopping cart items before peocessing wuth the order payment.
{% endif %}
{% endblock %}