{% extends "client/base_site.html" %} {% load i18n static %} {% block title %}Deposit - Dashboard{% endblock %} {% block topbar %} {% include "client/topbar.html" %} {% endblock %} {% block content %}
{% block breadcrumbs %} {% include "client/breadcrumbs.html" with title="Deposit" %} {% endblock %}

{{ account.account_number }} ({{ account.accounttype.account_category }} | {{ account.accounttype.currency }})

{% for deposit in deposits %} {% endfor %}
Transction ID Channel Type Deposit Method Amount Status Created At
{{ deposit.deposit_id }} {{ deposit.channel_type }} {{ deposit.deposit_method }} {{ deposit.amount|floatformat:2 }} {% if deposit.status|lower == 'success' %} Success {% else %} Pending {% endif %} {{ deposit.created_at }}
{% block footer %}{% include "client/footer.html" %}{% endblock %}
{% endblock %}