{% extends 'base.html' %} {% block content %}
← 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 %} {% 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 %}
{% endblock %}