{% extends 'base.html' %} {% load static %} {% block title %}Wallet Demo - Stripe Webhook Testing{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

๐Ÿงช Payment Testing

{{ current_balance|floatformat:2 }} AED

Test Amounts

๐Ÿ“ก Webhook Monitor

Recent Transactions

{% for transaction in recent_transactions %}
{{ transaction.description|default:"Wallet Transaction" }}
{{ transaction.created_at|date:"M d, H:i" }}
{% if transaction.amount >= 0 %}+{% endif %}{{ transaction.amount|floatformat:2 }} AED
{% empty %}
No transactions yet. Create a test payment to see webhook activity.
{% endfor %}

Webhook Logs

[INIT] Webhook monitoring started...
[INFO] Endpoint: https://netcop.up.railway.app/stripe/webhook/
[INFO] Waiting for webhook events...
{% csrf_token %} {% endblock %}