{% extends 'base.html' %} {% load humanize %} {% block title %}Shopping Cart — Chiez Stores{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Shopping Cart ({{ cart.item_count }} item{{ cart.item_count|pluralize }})

{% if cart.items.exists %}
{% for item in cart.items.all %} {% endfor %}
Product Quantity Price Subtotal
{% if item.product.image %} {{ item.product.name }} {% else %}
{% endif %}
{{ item.product.name }}
{% if item.size %}Size: {{ item.size }}{% endif %} {% if item.color %}  |  Color: {{ item.color }}{% endif %}
₦{{ item.product.effective_price|floatformat:0|intcomma }} each
{% csrf_token %}
₦{{ item.product.effective_price|floatformat:0|intcomma }} ₦{{ item.subtotal|floatformat:0|intcomma }}
{% csrf_token %}
Continue Shopping
Order Summary
Subtotal ({{ cart.item_count }} items) ₦{{ cart.total|floatformat:0|intcomma }}
{% if cart.coupon %}
Coupon: {{ cart.coupon.code }} − ₦{{ cart.discount_amount|floatformat:0|intcomma }}
Remove coupon
{% endif %}
Delivery Calculated at checkout
Total ₦{{ cart.total_after_coupon|floatformat:0|intcomma }}
{% if not cart.coupon %}
{% csrf_token %}
{% endif %}
{% if user.is_authenticated %} Proceed to Checkout {% else %} Login to Checkout Create Account {% endif %}

Secure & Encrypted Checkout

{% else %}

Your cart is empty

Looks like you haven't added anything yet. Let's change that!

Start Shopping
{% endif %}
{% endblock %}