{% extends "saas/base.html" %} {% load currency %} {% load saas_tags %} {% block saas_content %}

Bank Information Update

Bank
{{bank_name}}
Account Number
{{last4}}

Funds

{% if balance <= 0 %}
{{balance|humanize_balance}}
Available {% if balance < 0 %}(withdraw){% endif %}
{% else %}
{{balance|humanize_balance}}
Balance due
{% endif %}
{% include "saas/transaction_list.html" %} {% endblock %}