← Back to Homepage
Profile - {{ user.username }}
Email:
{{ user.email }}
Balance:
{{ user.wallet_balance }} AED
{{ wallet_status.message }}
Manage Wallet
Top Up
{{ total_spent }} AED
Total Spent
{{ total_topped_up }} AED
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 }} AED
{% endfor %} {% else %}
No transactions yet.
{% endif %}