{% extends 'base.html' %}{% load static %} {% block title %}Transaction History — Unity Nation{% endblock %} {% block extra_css %} .txn-wrap{background:var(--panel);border:1px solid var(--border);border-radius:var(--rl);overflow:hidden} .txn-hd{display:grid;grid-template-columns:44px 1fr auto auto;align-items:center;gap:14px;padding:11px 18px;background:rgba(255,255,255,.03);font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:var(--muted)} .txn-row{display:grid;grid-template-columns:44px 1fr auto auto;align-items:center;gap:14px;padding:13px 18px;border-top:1px solid rgba(255,255,255,.04);transition:background var(--tr)} .txn-row:hover{background:rgba(255,255,255,.025)} .t-icon{width:36px;height:36px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:.88rem;flex-shrink:0} .ti-g{background:rgba(0,200,168,.15);color:var(--teal)} .ti-r{background:rgba(239,68,68,.12);color:var(--red)} .ti-v{background:rgba(123,95,230,.15);color:var(--vlt)} .t-type{font-weight:600;font-size:.88rem} .t-meta{font-size:.74rem;color:var(--muted);margin-top:2px} .t-amt{font-family:var(--ff);font-weight:700;font-size:.94rem;white-space:nowrap} .amt-g{color:var(--teal)}.amt-r{color:var(--red)} .fbar{display:flex;gap:9px;flex-wrap:wrap;margin-bottom:18px} .fbar select{background:var(--panel);border:1px solid var(--border);border-radius:9px;color:var(--white);padding:8px 12px;font-size:.83rem;font-family:var(--fb);outline:none;transition:border-color var(--tr)} .fbar select:focus{border-color:var(--violet)} .fbar select option{background:var(--panel)} {% endblock %} {% block content %}
Finance

Transaction History

Complete record of every credit, debit, and transfer on your account.

Current Balance
${{ user.wallet_balance|floatformat:2 }}
Available to withdraw
Total Withdrawn
${{ user.total_withdrawal|floatformat:2 }}
Lifetime earnings out
Total Transactions
{{ transactions.paginator.count|default:transactions|length }}
All time
DescriptionAmountStatus
{% for txn in transactions %}
{% if txn.transaction_type == 'DAILY_REWARD' %} {% elif txn.transaction_type == 'REFERRAL_BONUS' %} {% elif txn.transaction_type == 'WITHDRAWAL' %} {% elif txn.transaction_type == 'TRANSFER' %} {% elif txn.transaction_type == 'PURCHASE' %} {% else %}{% endif %}
{{ txn.get_transaction_type_display|default:txn.transaction_type }}
{{ txn.created_at|date:"M d, Y · H:i" }}{% if txn.related_user %} · {{ txn.related_user.username }}{% endif %}{% if txn.notes %} · {{ txn.notes }}{% endif %}
{% if txn.direction == 'RECEIVED' or not txn.direction %}+{% else %}-{% endif %}${{ txn.amount|floatformat:2 }}
{{ txn.status }}
{% empty %}

No transactions yet

Your history will appear here once you start earning daily rewards.

{% endfor %}
{% if transactions.has_other_pages %}
{% if transactions.has_previous %}← Prev{% endif %} {% for n in transactions.paginator.page_range %}{{ n }}{% endfor %} {% if transactions.has_next %}Next →{% endif %}
{% endif %}
{% endblock %}