{% extends 'adminpanel/base.html' %} {% block title %}Transactions · Admin Dashboard{% endblock %} {% block page_title %}Transactions{% endblock %} {% block content %}

Pending Approval

{% for t in pending %}
{{ t.user.username }} — {{ t.category|title }} ({{ t.account_bucket|title }})
{{ t.amount }} {{ t.currency }} · {{ t.created_at|date:'Y-m-d H:i' }}
{% csrf_token %}
{% csrf_token %}
{% empty %}
No pending transactions.
{% endfor %}

Recent Transactions

{% for t in recent %} {% empty %} {% endfor %}
User Bucket Category Amount Currency Status Created
{{ t.user.username }} {{ t.account_bucket|title }} {{ t.category|title }} {{ t.amount }} {{ t.currency }} {{ t.status|title }} {{ t.created_at|date:'Y-m-d H:i' }}
No transactions yet.
{% endblock %}