{% extends 'adminpanel/base.html' %} {% block title %}Withdrawal Management ยท Admin Panel{% endblock %} {% block content %}
โ† Back to Dashboard

๐Ÿ’ธ Withdrawal Management

View All Transactions
Pending Withdrawals
{{ stats.pending_count }}
Total: ${{ stats.pending_amount }}
Completed Today
{{ stats.completed_today }}
Total: ${{ stats.completed_amount_today }}
Average Processing Time
~2h
Last 24 hours
Success Rate
98%
Last 30 days
โณ Pending โœ“ Completed โœ— Declined ๐Ÿ“‹ All
{% if status_filter == 'pending' and withdrawals %}
{% csrf_token %}
{% endif %}
{% if status_filter == 'pending' %} {% endif %} {% for withdrawal in withdrawals %} {% if status_filter == 'pending' %} {% endif %} {% empty %} {% endfor %}
Date User Amount Bucket Status Actions
{{ withdrawal.created_at|date:"Y-m-d" }}
{{ withdrawal.created_at|date:"H:i" }}
{{ withdrawal.user.email }}
{{ withdrawal.user.username }}
${{ withdrawal.amount }}
{{ withdrawal.get_account_bucket_display }} {{ withdrawal.get_status_display }} {% if withdrawal.status == 'pending' %}
{% csrf_token %}
{% else %} View Details โ†’ {% endif %}
๐Ÿ“ญ
No withdrawals found
{% if status_filter == 'pending' and withdrawals %} {% endif %}
{% endblock %}