{% extends 'base/layout.html' %} {% block content %}
{% if not seller.tax_id or not seller.payout_details %}
Profile Not Complete: You must provide your Tax ID and Payout Details to start selling.
Complete Profile
{% endif %}

{{ seller.store_name }}

Seller Dashboard

View Storefront Edit Profile Manage Inventory Bounty Board

Active Listings: {{ active_listings_count }}

Items Sold: {{ items_sold }}

Revenue: ${{ total_revenue|floatformat:2 }}

{% if avg_rating %}

Avg Rating: {{ avg_rating }}/5

{% endif %}

Theme

{% csrf_token %} {{ theme_form.theme_preference }}

Store Views

{{ store_views }}

Listing Clicks

{{ listing_clicks }}

Store Link

Store QR Code
/store/{{ seller.slug }}

Share this QR code

Revenue (All Time)

${{ total_revenue|floatformat:2 }}

Units Sold

{{ items_sold }}

Avg. Order Value

{% if items_sold > 0 %} ${{ total_revenue|divisibleby:items_sold|default:"0.00" }} {# Django template math is limited, leaving simpler for now or use filters if available #} {# Just leaving placeholder logic or better computed in view #} -- {% else %} $0.00 {% endif %}

Analytics

{% if selected_game %}Clear{% endif %}

Sales & Revenue

{% endblock %}