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

{{ title }}

Assign a fee structure to a student for the academic year

Back
Enrollment Fee Details
{% csrf_token %} {% if form.errors %}
Please correct the errors below. {{ form.non_field_errors }}
{% endif %}
{{ form.student }} {% if form.student.errors %}
{{ form.student.errors }}
{% endif %}
{{ form.academic_year }}
{{ form.fee_structure }}
Select the row matching this student's class level and section.
{% if form.fee_structure.errors %}
{{ form.fee_structure.errors }}
{% endif %}
{{ form.is_new_pupil }}
Tick for new admissions — registration fee = 15,000 XAF. Leave unticked for returning pupils — registration fee = 10,000 XAF.
{{ form.installment_1_due }}
{{ form.installment_2_due }}
{{ form.notes }}
Cancel
Available Fee Structures
{% for fs in fee_structures %} {% endfor %}
Section / Tier Total
{{ fs.get_section_display }} {{ fs.get_class_group_display }} {{ fs.total_fees|floatformat:0 }}
{% endblock %} {% block extra_js %} {% endblock %}