💰 Current Balance

{{ current_balance|floatformat:2 }} AED
đŸ’ŗ Top Up Wallet

📊 Wallet Statistics

{{ total_spent|floatformat:2 }} AED
Total Spent
{{ total_topped_up|floatformat:2 }} AED
Total Topped Up
{{ transactions|length }}
Total Transactions

📋 Recent Transactions

{% if transactions %}
Showing {{ transactions|length }} of {{ transactions|length }} transactions
{% for transaction in transactions %}
{% if transaction.type == 'top_up' %}
đŸ’ŗ
{% else %}
🤖
{% endif %}
{% if transaction.description|length > 40 %} {{ transaction.description|truncatechars:40 }} {% else %} {{ transaction.description }} {% endif %}
{{ transaction.created_at|date:"M d, Y H:i" }} {{ transaction.get_type_display|default:transaction.type|title }}
{% if transaction.type == 'top_up' %} +{{ transaction.amount|floatformat:2 }} AED {% else %} -{{ transaction.amount|floatformat:2|cut:"-" }} AED {% endif %}
{% endfor %}
{% else %}
📭

No transactions yet. Start using AI agents to see your transaction history!

🤖 Browse Agents
{% endif %}