{% extends 'core/base.html' %} {% block title %} Transactions | {{ block.super }}{% endblock title %} {% block content %} {% include "core/messages.html" %}

Account Name: {{ user.full_name }}

Date of Birth: {{ user.account.birth_date }}

Gender: {{ user.account.get_gender_display }}

Contact No: {{ user.contact_no }}

Email Address: {{ user.email }}

Address: {{ user.full_address }}

Account Created: {{ user.date_joined|date:'d-m-Y' }}

Account No: {{ user.account_no }}



Account Balance: {{ user.balance }} $

Deposit Withdraw

Deposit Details

{% for obj in deposit %} {% endfor %}
# Date / Time Details Amount ($)
{{forloop.counter}} {{ obj.timestamp }} Deposit {{ obj.amount }}
Total {{ deposit_sum }}

Withdrawal Details

{% for obj in withdrawal %} {% endfor %}
# Date / Time Details Amount ($)
{{forloop.counter}} {{ obj.timestamp }} Withdrawal {{ obj.amount }}
Total {{ withdrawal_sum }}

Interest Details

{% for obj in interest %} {% endfor %}
# Date / Time Details Amount ($)
{{forloop.counter}} {{ obj.timestamp }} Interest {{ obj.amount }}
Total {{ interest_sum }}

{% endblock content %}