{% extends "partials/dashboard-base.html" %} {% load static %} {% load humanize %} {% block content %}
{% if form.errors %}
{{form.errors}}
{% endif %}
image Hi, {{ kyc.full_name|title }}!
{% for recent_recieved_transfer in recent_recieved_transfer %}
Last Received {{ user.currency }} {{ recent_recieved_transfer.amount|intcomma }}
{% endfor %}

Balance

{{ currency_symbol }} {{ account.account_balance|intcomma }}

{% if user.status == "On Hold" %}

Your account is currently on hold.

{% if not user.on_hold_requested %} {% else %}

You have already requested a review.

{% endif %}
{% endif %} {% if user.status == "Active" %}
{% endif %}
Transaction Limits
{% if transaction_limit %}

Daily Limit: {{ currency }}:{{ transaction_limit.daily_limit|intcomma }}

Used Today: {{ currency }}: {{ used_amount|intcomma }}

Remaining: {{ currency }} {{ remaining_limit|intcomma }}

{% else %}

No transaction limits set for your account

{% endif %}
Recent Transactions
View All
{% for transaction in transactions %}
{{ transaction.get_transaction_type_display }}
{{ transaction.created_at|date:"M d, Y H:i" }}
{{ currency }}{{ transaction.amount|intcomma }}
{{ transaction.status|capfirst }}
{% empty %}
No transactions yet
{% endfor %}

{{ pending_transactions }}

Pending Transactions

{{ completed_transactions }}

Completed Transactions

{% endblock content %}