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

{{ listing.title }}

{% if listing.image_path %}{{ listing.title }}{% endif %}

{{ listing.description }}

Seller: {{ listing.seller_name }} · {{ listing.category_name or 'Uncategorized' }} · Status: {{ listing.status }}

Listing ★ {{ '%.1f'|format(listing.listing_rating_avg or 0) }} ({{ listing.listing_rating_count }}) · Seller ★ {{ '%.1f'|format(listing.seller_rating_avg or 0) }} ({{ listing.seller_rating_count }})

{{ '%.6f'|format(listing.price_xmr) }} XMR
USD {{ '%.2f'|format(price_conv.usd) }} · EUR {{ '%.2f'|format(price_conv.eur) }} {% if listing.price_currency in ['EUR','USD'] and listing.price_fiat %}
Seller pegged: {{ listing.price_currency }} {{ '%.2f'|format(listing.price_fiat) }}{% endif %}
Shipping: {{ '%.6f'|format(listing.shipping_price_xmr or 0) }} XMR

{% if bulk_prices %}

Bulk pricing
{% for b in bulk_prices %}{{ b.min_quantity }}+ units: {{ '%.6f'|format(b.unit_price_xmr) }} XMR each
{% endfor %}

{% endif %} {% if listing.status == 'active' and current_user and can_purchase_account %}
{% if show_seller_pgp_in_checkout %} {% endif %} {% if shipping_options %} {% endif %}
{% elif listing.status == 'active' %} Login as buyer/admin (with purchasing enabled) to purchase. {% endif %} {% if listing.status == 'active' and cart_enabled and current_user %}
{% endif %}
{% if can_manage_listing %} {% endif %}
{% endblock %}