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
{% if student_fees_data %}
#
Class
Student
Total Fees
Amount Paid
Balance
Payment Status
Progress
Actions
{% for student_fee in student_fees_data %}
{{ 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 %}
{% endfor %}
{% else %}
No Fee Records Found
No student fee records match your current filters. Try adjusting the filters or check if
bills have been created for the selected period.
{% endif %}