{% extends "base.html" %} {% block title %}Wallet — DUYS Boost{% endblock %} {% block page_title %}Wallet{% endblock %} {% block content %}
Available Balance
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(current_user.balance) }}
Total Deposited
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(transactions|selectattr('type','eq','deposit')|sum(attribute='amount')) }}
Total Withdrawn
{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(transactions|selectattr('type','eq','withdrawal')|sum(attribute='amount')) }}
đŸ’ŗ Add Funds
{% for amt in [5,10,25,50] %} {% endfor %}
â„šī¸ Payments are processed securely with Paystack in Ghana Cedis ({{ CURRENCY_CODE }}).
đŸĻ Withdraw Funds
Transaction History
{% if transactions %}
{% for tx in transactions %} {% endfor %}
TypeDescriptionAmountStatusDate
{% if tx.type=='deposit' %}đŸ’ŗ{% elif tx.type=='withdrawal' %}đŸĻ{% elif tx.type=='earn' %}💰{% else %}đŸ“ĸ{% endif %} {{ tx.description }} {{ '+' if tx.type in ['deposit','earn'] else '-' }}{{ CURRENCY_SYMBOL }}{{ '%.2f'|format(tx.amount) }} {{ tx.status }} {{ tx.created_at[:16] }}
{% else %}
đŸ’ŗ
No transactions yet.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}