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

Shopping Cart

{% if cart and cart.items.count > 0 %}
{% for item in cart.items.all %}
{% 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 cart.insurance %}✓{% endif %}
Add Shipping Insurance (Protects against damage/loss)
+$5.00
Total ${{ cart.total_price }}
Proceed to Checkout
{% else %}

Your cart is empty.

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