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 %} {% for withdrawal in withdrawals %} {% endfor %}
# Amount Date
{{ loop.index }} KES {{ withdrawal.amount }} {{ withdrawal.created_at }}
{% else %}

No withdrawals found.

{% endif %}