{% extends 'public/parent_base.html' %} {% block title %}Fees | {{ student.name }}{% endblock %} {% block content %}

FINANCIAL LEDGER

TRANSACTION HISTORY
৳{{ total_due }}
Past Payments
{% for txn in transactions %}
৳{{ txn.total_amount }}
{{ txn.timestamp|date:"d M Y, g:i A" }}
{{ txn.payment_method }}
{% for item in txn.items.all %}
{{ item.fee.fee_type.name }} ৳{{ item.amount_paid }}
{% endfor %} {% if txn.discount_amount > 0 %}
Discount Applied -৳{{ txn.discount_amount }}
{% endif %} {% if txn.fine_amount > 0 %}
Late Penalty Feed +৳{{ txn.fine_amount }}
{% endif %}
{% empty %}
NO TRANSACTIONS RECORDED
{% endfor %}
{% endblock %}