{% extends 'base.html' %} {% load static %} {% block title %}Enrollment Fees — Rapha-Bethel BNPS{% endblock %} {% block content %}

Student Enrollment Fees

Links each student to their fee tier and records new/returning status

Enroll Student
{% if messages %} {% for msg in messages %}
{{ msg }}
{% endfor %} {% endif %}
Clear
{% for ef in enrollment_fees %} {% empty %} {% endfor %}
Student Year Section / Tier New/Returning Reg. Fee Total Fees 1st Due 2nd Due
{{ ef.student.get_full_name }} {{ ef.student.student_id }} {{ ef.academic_year }} {{ ef.fee_structure.get_section_display }} {{ ef.fee_structure.get_class_group_display }} {% if ef.is_new_pupil %} New Pupil {% else %} Returning {% endif %} {{ ef.registration_fee|floatformat:0 }} {{ ef.total_fees|floatformat:0 }} {{ ef.installment_1_due|date:"d M Y"|default:"—" }} {{ ef.installment_2_due|date:"d M Y"|default:"—" }}
No enrollment records yet. Add the first one
{% if is_paginated %} {% endif %}
{% endblock %}