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

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

{% for withdraw in withdraws %} {% endfor %}
Transaction ID Withdraw Method Amount Status Created At Processed At
{{ withdraw.withdrawal_id }} {{ withdraw.withdrawal_method }} {{ withdraw.amount|floatformat:2 }} {% if withdraw.status|lower == 'success' %} Success {% else %} Pending {% endif %} {{ withdraw.created_at }} {{ withdraw.processed_at|default_if_none:"" }}
{% block footer %}{% include "client/footer.html" %}{% endblock %}
{% endblock %}