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

← Back to marketplace

Seller: {{ seller.username }}

Account created: {{ seller.created_at }}
Seller rating: ★ {{ '%.1f'|format(seller_stats.avg_rating or 0) }} ({{ seller_stats.rating_count }})
Total completed sales: {{ seller_stats.completed_sales }}
Total XMR sold: {{ '%.6f'|format(seller_stats.completed_sales_xmr or 0) }}

Listings

{% for l in listings %}
{{ l.title }}

Status: {{ l.status }} · Created: {{ l.created_at }}

Rating ★ {{ '%.1f'|format(l.listing_rating_avg or 0) }} ({{ l.listing_rating_count }})

{{ '%.6f'|format(l.price_xmr) }} XMR
Shipping: {{ '%.6f'|format(l.shipping_price_xmr or 0) }} XMR

{% else %}

This seller has no visible listings.

{% endfor %}

Seller reviews

{% for r in seller_reviews %}

★ {{ r.rating }}/5 from {{ r.buyer_name }} · {{ r.created_at }}

{{ r.comment or 'No comment left.' }}

Order #{{ r.order_id }}
{% else %}

No seller reviews yet.

{% endfor %}
{% endblock %}