{% extends 'base/layout.html' %} {% block content %}

Shopping Cart

{% if cart and cart.items.count > 0 %}
{% for section in cart_data %}
{% if section.seller %} Store: {{ section.seller.store_name }} {% else %} System Items {% endif %}
{% for item in section.items %}
{% if item.listing %} {% if item.listing.card.image_url %} {% endif %}

{{ item.listing.card.name }}

{{ item.listing.get_condition_display }} {% if item.listing.is_foil %}• Foil{% endif %}

{% else %} {% if item.pack_listing.image_url %} {% else %}
📦
{% endif %}

{{ item.pack_listing.name }}

Booster Pack

{% endif %}
{{ item.quantity }} x ${% if item.listing %}{{ item.listing.price }}{% else %}{{ item.pack_listing.price }}{% endif %}
${{ item.total_price }}
×
{% endfor %}
{% if section.free_shipping_needed > 0 %} Add ${{ section.free_shipping_needed }} more for free shipping! {% else %} Free Shipping Qualifies! {% endif %}
Subtotal: ${{ section.subtotal }}
Shipping: ${{ section.shipping_cost }}
{% endfor %}
{% if cart.insurance %}✓{% endif %}
Add Shipping Insurance (Protects against damage/loss)
+$5.00
Total ${{ grand_total }}
Proceed to Checkout
{% else %}

Your cart is empty.

Browse Cards
{% endif %}
{% endblock %}