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

Manage Listings

Manage your inventory of Single Cards and Packs

+ Add Card {% if FEATURE_VIRTUAL_PACKS %} + Add Pack {% endif %} + Post Bounty Dashboard

Card Listings ({{ card_listings|length }})

{% if card_listings %}
{% for listing in card_listings %}
{% if listing.image %} {{ listing.card.name }} {% elif listing.card.image_url %} {{ listing.card.name }} {% else %}
N/A
{% endif %}

{{ listing.card.name }}

{{ listing.card.set.name }}

{{ listing.get_condition_display }}

Price

${{ listing.price }}

Stock

{{ listing.quantity }}

{% endfor %}
{% else %}

No card listings found.

Add your first card
{% endif %}
{% if FEATURE_VIRTUAL_PACKS %}

Pack Listings ({{ pack_listings|length }})

{% if pack_listings %}
{% for listing in pack_listings %}
{% if listing.image_url %} {{ listing.name }} {% else %}
📦
{% endif %}

{{ listing.name }}

{{ listing.game.name }}

Price

${{ listing.price }}

Stock

{{ listing.quantity }}

{% if listing.listing_type == 'virtual' %} Manage Inventory {% endif %} Edit Delete
{% endfor %}
{% else %}

No pack listings found.

Add your first pack
{% endif %}
{% endif %}
{% endblock %}