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

Hardware Listings

{{ total_listings }} matching listings · Page {{ current_page }} of {{ total_pages }} · Escrow only

Browse & Filter Marketplace

{% if selected_category_id %} {% endif %}
Reset all
{% for l in listings %}
{% if l.image_path %} {{ l.title }} {% else %}
No image
{% endif %}
{{ l.title }}

{{ l.description }}

{% set conv = conversion_display(l.price_xmr) %}

Seller: {{ l.seller_name }} · {{ l.category_name or 'Uncategorized' }}

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

{{ '%.4f'|format(l.price_xmr) }} XMR
USD {{ '%.2f'|format(conv.usd) }} · EUR {{ '%.2f'|format(conv.eur) }} {% if l.price_currency in ['EUR','USD'] and l.price_fiat %}
Fixed {{ l.price_currency }} {{ '%.2f'|format(l.price_fiat) }}{% endif %}
Shipping: {{ '%.4f'|format(l.shipping_price_xmr or 0) }} XMR {% if (l.shipping_price_xmr or 0) == 0 %}· Free{% endif %}

Open product page {% if cart_enabled and current_user and can_purchase_account %}
{% endif %}
{% else %}

No listings matched your filters.

{% endfor %}
{% if total_pages > 1 %}

More listings

Showing up to {{ page_size }} listings per page so the landing page stays fast.

{% for link in pagination_links %} {{ link.page }} {% endfor %}
{% endif %} {% endblock %}