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

Parent Portal

{% for student in students %}
{{ student.first_name }} {{ student.last_name }}

Class: {{ student.current_class }}

Student ID: {{ student.student_id }}

Attendance: 85% this month

Fee Status: Paid

Next Payment: 15 Jan 2026

View Details
{% empty %}

No students linked to your account

{% endfor %}
{% endblock %}