{% extends "partials/dashboard-base.html" %} {% load static %} {% load humanize %} {% block content %}
Transactions

Updated every several minutes

{% for s in sender_transaction %} {% endfor %}
Name/ Business Date Status Amount Action

{{s.reciever.kyc.full_name|title}}

{{s.transaction_type|title}}

{{s.date|date:"h:i"}}

{{s.date|date:"d M, Y"}}

{% if s.status == 'completed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'pending' %}

{{s.status|title}}

{% endif %} {% if s.status == 'failed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'processing' %}

{{s.status|title}}

{% endif %}

-${{s.amount|intcomma}}

{% for s in reciever_transaction %} {% endfor %}
Name/ Business Date Status Amount Action

{{s.sender.kyc.full_name|title}}

{{s.transaction_type|title}}

{{s.date|date:"h:i"}}

{{s.date|date:"d M, Y"}}

{% if s.status == 'completed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'pending' %}

{{s.status|title}}

{% endif %} {% if s.status == 'failed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'processing' %}

{{s.status|title}}

{% endif %}

+${{s.amount|intcomma}}

{% for s in request_sender_transaction %} {% endfor %}
Name/ Business Date Status Amount Action

{{s.reciever.kyc.full_name|title}}

{{s.transaction_type|title}}

{{s.date|date:"h:i"}}

{{s.date|date:"d M, Y"}}

{% if s.status == 'completed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'pending' %}

{{s.status|title}}

{% endif %} {% if s.status == 'failed' %}

{{s.status|title}}

{% endif %} {% if s.status == 'processing' %}

{{s.status|title}}

{% endif %} {% if s.status == 'request_sent' %}

{{s.status|title}}

{% endif %} {% if s.status == 'request_settled' %}

{{s.status|title}}

{% endif %} {% if s.status == 'request_processing' %}

{{s.status|title}}

{% endif %}

+${{s.amount|intcomma}}

{% if s.status == "request_sent" %} View Delete {% endif %} {% if s.status == "request_processing" %} View Delete {% endif %} {% if s.status == "request_settled" %} Settled {% endif %}
{% for s in request_reciever_transaction %} {% empty %}
  • No Received Requests
  • {% endfor %}
    Name/ Business Date Status Amount Action

    {{s.sender.kyc.full_name|title}}

    {{s.transaction_type|title}}

    {{s.date|date:"h:i"}}

    {{s.date|date:"d M, Y"}}

    {% if s.status == 'completed' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'pending' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'failed' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'processing' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'request_sent' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'request_settled' %}

    {{s.status|title}}

    {% endif %} {% if s.status == 'request_processing' %}

    {{s.status|title}}

    {% endif %}

    +${{s.amount|intcomma}}

    {% if s.status == "request_sent" %} Settle Cancel {% endif %} {% if s.status == "request_settled" %} Settled {% endif %}
    {% endblock content %}