{% extends "core/dashboard/base.html" %} {% load static %} {% block content %}

Welcome Back, {{ request.user }}

Transaction History
{% for transaction in transactions %} {% if transaction.transaction_type == "DEPOSIT" %} {% else %} {% endif %} {% if transaction.sent or transaction.recieved %} {% else %} {% endif %} {% endfor %}
deposit withdraw
successful
pending
{{ transaction.amount }} {{ transaction.tid }}
{% endblock content %}