{% extends 'base/layout.html' %} {% block content %} {% if seller.hero_image %}
{{ seller.store_name }} Banner
{% endif %}
{% if seller.store_image %} {{ seller.store_name }} {% else %}
🏪
{% endif %}

{{ seller.store_name }}

Verified Seller

{% if avg_rating %}
{{ avg_rating }}/5
{% endif %}

{{ seller.description|default:"No description available." }}

{% if seller.contact_email or seller.contact_phone or seller.business_address %}

Contact Info

{% if seller.contact_email %}

📧 {{ seller.contact_email }}

{% endif %} {% if seller.contact_phone %}

📞 {{ seller.contact_phone }}

{% endif %} {% if seller.business_address %}

📍 {{ seller.business_address|linebreaksbr }}

{% endif %}
{% endif %}

Shipping Policy

{% if seller.minimum_order_amount > 0 %}

Standard Shipping: ${{ seller.shipping_cost }}

Free shipping on orders over ${{ seller.minimum_order_amount }}!

{% else %}

Free Shipping on all orders!

{% endif %}

Active Listings

Clear
{% for listing in card_listings %}
{% if listing.card.image_url %} {{ listing.card.name }} {% else %}
No Image
{% endif %}

{{ listing.card.name }}

{{ listing.card.set.name }}

${{ listing.price }} {{ listing.get_condition_display }}
{% csrf_token %}
{% endfor %} {% for listing in pack_listings %}
PACK

{{ listing.name }}

{{ listing.game.name }}

${{ listing.price }}
{% csrf_token %}
{% endfor %}
{% if not card_listings and not pack_listings %}

This seller has no active listings at the moment.

{% endif %}

Bounty Board

TBD

This seller is not currently accepting bounties.

{% endblock %}