{% extends 'base.html' %} {% block title %}{{ _('Wallet') }}{% endblock %} {% block content %}
{{ _('Add test funds instantly for demo purposes.') }}
| {{ _('Date') }} | {{ _('Type') }} | {{ _('Amount') }} | {{ _('Status') }} |
|---|---|---|---|
| {{ tx.created_at.strftime('%d/%m %H:%M') }} | {% if tx.type == 'deposit' %} {{ _('Deposit') }} {% elif tx.type == 'withdrawal' %} {{ _('Withdrawal') }} {% elif tx.type == 'bet' %} {{ _('Bet') }} {% elif tx.type == 'win' %} {{ _('Win') }} {% endif %} | {{ "{:+,.0f}".format(tx.amount) }} XAF | {% if tx.status == 'completed' %} ✓ {% elif tx.status == 'pending' %} ⏳ {% else %} ✗ {% endif %} |
{{ _('No transactions yet') }}