{% extends "client/base_site.html" %} {% load i18n static %} {% load humanize %} {% block title %}Customer Accounts - Dashboard{% endblock %} {% block topbar %} {% include "client/topbar.html" %} {% endblock %} {% block content %}
{% block breadcrumbs %} {% include "client/breadcrumbs.html" with title="Customer Accounts" %} {% endblock %}
{% for account in accounts %}

{{ account.account_number }}

{{ account.balance|floatformat:2|intcomma }} {{ account.accounttype.currency }}

Deposits Withdraw
{% endfor %}
{% block footer %}{% include "client/footer.html" %}{% endblock %}
{% endblock %}