{% comment %} Reusable stats card component for payment admin dashboards Usage: {% include "admin/payments/_components/stats_card.html" with title="Total Users" value="1,234" color="primary" icon="👥" %} Parameters: - title: Card title - value: Main value to display - color: Color theme (primary, success, warning, error, info) - icon: Emoji or icon to display - subtitle: Optional subtitle text {% endcomment %} {% load humanize %}

{% if icon %}{{ icon }}{% endif %}{{ value|default:0 }}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}