{% extends "base.html" %} {% block title %}Wallet â DUYS Boost{% endblock %} {% block page_title %}Wallet{% endblock %} {% block content %}
| Type | Description | Amount | Status | Date |
|---|---|---|---|---|
| {% 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] }} |