← Back to Homepage
Profile - {{ user.username }}
Email:
{{ user.email }}
Balance:
${{ user.wallet_balance }}
{{ wallet_status.message }}
Manage Wallet
Top Up
${{ total_spent }}
Total Spent
${{ total_topped_up }}
Total Topped Up
{{ total_agents_used }}
Agents Used
{% if popular_agents %}
Your Most Used Agents
{% for agent in popular_agents %}
{{ agent.agent_slug }}
{{ agent.count }}
times
{% endfor %}
{% endif %}
Recent Transactions
{% if transactions %} {% for transaction in transactions %}
{{ transaction.description }}
{{ transaction.created_at|date:"M d, Y H:i" }}
{% if transaction.type == 'top_up' %}+{% else %}-{% endif %}${{ transaction.amount }}
{% endfor %} {% else %}
No transactions yet.
{% endif %}