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

Admin Panel

Rights → Categories={{ role.can_manage_categories }}, Listings={{ role.can_manage_listings }}, Disputes={{ role.can_manage_disputes }}, Forum={{ role.can_manage_forum }}, Users={{ role.can_manage_users }}, Wallet={{ role.can_manage_wallet }}, EscrowDecider={{ role.can_release_escrow }}, SellerReviewer={{ role.can_review_sellers }}, Overview={{ role.can_see_marketplace_overview }}, UserRights={{ role.can_manage_user_rights }}, Impersonate={{ role.can_impersonate_users }}, Weight={{ role.weight }}

{% if role.can_see_marketplace_overview %}

Marketplace overview

MetricValue
Total users{{ stats.total_users }}
Buyers{{ stats.total_buyers }}
Sellers{{ stats.total_sellers }}
Admins{{ stats.total_admins }}
Total listings{{ stats.total_listings }}
Active listings{{ stats.active_listings }}
Total orders{{ stats.total_orders }}
Currently in Escrow (XMR){{ '%.6f'|format(stats.currently_in_escrow) }}
Current hot wallet (XMR){{ '%.6f'|format(hot_wallet_balance_xmr) }}{% if hot_wallet_balance_source == 'tracked' %} (tracked fallback){% else %} (live unlocked balance){% endif %}
GM volume (XMR){{ '%.6f'|format(stats.gm_volume) }}
{% if hot_wallet_balance_error %}

Live wallet RPC unavailable: {{ hot_wallet_balance_error }}

{% endif %}
{% endif %} {% if role.can_manage_categories %}

Category management

{% for c in categories %} {% endfor %}
NamePositionActions
{{ c.name }}{{ c.position }}
{% endif %}
{% endblock %}