{% extends "base.html" %} {% load humanize %} {% block page_title %}Student Fees Payment Status{% endblock page_title %} {% block content %}

Student Fees Payment Status

Monitor student fee payments and outstanding balances for Term: {{ current_term.term }} {{ current_year.academic_year }}
Track collection performance by class and student.
Carry Forward Open Ledger Export Ledger Excel Help
{% if class_filter %}{% endif %} {% if year_filter %}{% endif %} {% if term_filter %}{% endif %} {% if status_filter %}{% endif %}
Total Fees
UGX {{ total_fees|intcomma }}
{{ current_term.term }} {{ current_year.academic_year }}
Total Paid
UGX {{ total_paid|intcomma }}
{{ student_fees_data|length }} students
Outstanding
UGX {{ total_balance|intcomma }}
Pending payments
Collection Rate
{{ collection_rate|floatformat:1 }}%
Payment efficiency
Filters & Search
{% if student_fees_data %}
{% for student_fee in student_fees_data %} {% endfor %}
# Class Student Total Fees Amount Paid Balance Payment Status Progress Actions
{{ forloop.counter }} {{ student_fee.academic_class.Class.name }} {{ student_fee.student.student_name }}
{{ student_fee.student.display_student_id }}
UGX {{ student_fee.total_amount|intcomma }} UGX {{ student_fee.amount_paid|intcomma }} {% if student_fee.balance_label == "CR" %} CR {{ student_fee.balance|intcomma }} {% elif student_fee.balance_label == "DR" %} DR {{ student_fee.balance|intcomma }} {% else %} UGX {{ student_fee.balance|intcomma }} {% endif %} {% if student_fee.payment_status == "Paid" %} Paid {% elif student_fee.payment_status == "Overpaid" %} Overpaid {% elif student_fee.payment_status == "Unpaid" %} Unpaid {% elif student_fee.payment_status == "Overdue" %} Overdue {% elif student_fee.payment_status == "Partial" %} Partial {% else %} No Bill {% endif %} {% if student_fee.total_amount > 0 %}
{{ student_fee.amount_paid_percentage|floatformat:0 }}%
{% else %} N/A {% endif %}
{% if student_fee.bill_id %} {% endif %} {% if student_fee.student_id %} {% endif %} {% if not student_fee.bill_id and not student_fee.student_id %} - {% endif %}
{% else %}
{% endif %}
{% endblock %}