{% extends 'adminpanel/base.html' %} {% block title %}Analytics ยท Admin Panel{% endblock %} {% block content %}
โ† Back to Dashboard

๐Ÿ“Š Advanced Analytics

User Growth

New Users Today
{{ user_stats.new_today }}
New Users This Week
{{ user_stats.new_week }}
New Users This Month
{{ user_stats.new_month }}

Transaction Flow

Today

Deposits
${{ transaction_stats.deposits_today }}
Withdrawals
${{ transaction_stats.withdrawals_today }}
Net Flow
${{ transaction_stats.net_today }}

This Week

Deposits
${{ transaction_stats.deposits_week }}
Withdrawals
${{ transaction_stats.withdrawals_week }}
Net Flow
${{ transaction_stats.net_week }}

This Month

Deposits
${{ transaction_stats.deposits_month }}
Withdrawals
${{ transaction_stats.withdrawals_month }}
Net Flow
${{ transaction_stats.net_month }}

Top 10 Accounts by Balance

{% for account in top_accounts %} {% empty %} {% endfor %}
Rank User Capital Profit Bonus Total
{{ forloop.counter }} {{ account.user.email }} ${{ account.capital_balance|default:"0.00" }} ${{ account.profit_balance|default:"0.00" }} ${{ account.bonus_balance|default:"0.00" }} ${{ account.total|default:"0.00" }}
No accounts yet

Recently Verified Users

{% for user in recent_verifications %}
{{ user.email }}
Joined: {{ user.date_joined|date:"Y-m-d" }}
Verified
{% empty %}

No verified users yet

{% endfor %}
{% endblock %}