Withdraw Funds
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
Your Balance: KES {{ total_balance if total_balance else 0 }}
Your Withdrawals
{% if withdrawals %}
| # |
Amount |
Date |
{% for withdrawal in withdrawals %}
| {{ loop.index }} |
KES {{ withdrawal.amount }} |
{{ withdrawal.created_at }} |
{% endfor %}
{% else %}
No withdrawals found.
{% endif %}