Card Listings ({{ card_listings|length }})
{% if card_listings %}
{% for listing in card_listings %}
{% if listing.image %}

{% elif listing.card.image_url %}

{% else %}
N/A
{% endif %}
{{ listing.card.name }}
{{ listing.card.set.name }}
{{ listing.get_condition_display }}
Price
${{ listing.price }}
Stock
{{ listing.quantity }}
{% endfor %}
{% else %}
{% endif %}
{% if FEATURE_VIRTUAL_PACKS %}
Pack Listings ({{ pack_listings|length }})
{% if pack_listings %}
{% for listing in pack_listings %}
{% if listing.image_url %}

{% else %}
📦
{% endif %}
{{ listing.name }}
{{ listing.game.name }}
Price
${{ listing.price }}
Stock
{{ listing.quantity }}
{% endfor %}
{% else %}
{% endif %}
{% endif %}