{% extends "admin/change_list.html" %} {% load static %} {% block result_list %} {% if currency_stats %} {% include "admin/payments/_components/dashboard_header.html" with title="Currency Overview" icon="📊" %} {% with stats=currency_stats %}
{% include "admin/payments/_components/stats_card.html" with title="Total Currencies" value=stats.total_currencies color="primary" %} {% include "admin/payments/_components/stats_card.html" with title="Provider Mappings" value=stats.enabled_provider_currencies color="success" %} {% include "admin/payments/_components/stats_card.html" with title="With USD Rates" value=stats.currencies_with_rates color="warning" %} {% include "admin/payments/_components/stats_card.html" with title="Rate Coverage" value=stats.rate_coverage|floatformat:1|add:"%" color="info" %}
{% endwith %}

Currency Types

🚀 Top Supported

{% endif %} {{ block.super }} {% endblock %}