{% extends 'base.html' %} {% load static %} {% block title %}Wallet - NetCop Hub{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

💰 Your Wallet

Current Balance
{{ current_balance|floatformat:2 }} AED
đŸ’ŗ Top Up Wallet
💸
{{ total_spent|floatformat:2 }} AED
Total Spent
đŸ’ĩ
{{ total_topped_up|floatformat:2 }} AED
Total Topped Up
📊
{{ transactions|length }}
Total Transactions

📋 Recent Transactions

{% if transactions %} {% for transaction in transactions %}
{{ transaction.description }}
{{ transaction.created_at|date:"M d, Y H:i" }}
{% if transaction.type == 'top_up' %} â†—ī¸ +{{ transaction.amount|floatformat:2 }} AED {% else %} â†™ī¸ -{{ transaction.amount|floatformat:2 }} AED {% endif %}
{% endfor %} {% else %}
📭

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

{% endif %}

🔍 Verify Payment

If you completed a payment but your wallet balance wasn't updated, enter the Stripe session ID below to verify it manually.

💡 You can find the session ID in your browser URL after completing payment, or in your email receipt.

{% endblock %} {% block extra_js %} {% endblock %}