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

Manage Pack Inventory

Listing: {{ listing.name }}

+ Add Pack Instance Back to Listings

Existing Packs ({{ packs|length }})

{% if packs %}
{% for pack in packs %}

Pack #{{ pack.id }}

{{ pack.get_status_display }}

Cards Inside:

    {% for card in pack.cards.all %}
  • • {{ card.name }} ({{ card.set.code }})
  • {% empty %}
  • No cards assigned!
  • {% endfor %}
{% endfor %}
{% else %}

No pack instances found for this listing.

{% endif %}
{% endblock %}