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

{{ student.first_name }} {{ student.last_name }}

Student ID: {{ student.student_id }} • Class: {{ student.current_class|default:"Not Assigned" }} • Status: {{ student.status|title }}

Student Information
Date of Birth: {{ student.date_of_birth|date:"d M Y" }}
Age: {{ student.get_age }} years
Gender: {{ student.get_gender_display }}
Admission Date: {{ student.admission_date|date:"d M Y" }}
Home Address: {{ student.home_address }}
Quarter: {{ student.quarter }}
Contact Information
Phone: {{ student.phone|default:"Not provided" }}
Emergency Contact: {{ student.emergency_contact|default:"Not provided" }}
Emergency Name: {{ student.emergency_contact_name|default:"Not provided" }}
Attendance (This Month)

85%

Present: 17 days • Absent: 3 days

Fee Status

Paid

Last Payment: 15 Nov 2024

Recent Activity

No recent activity

Parent/Guardian Information
{% if student.parentguardian_set.all %}
{% for parent in student.parentguardian_set.all %} {% endfor %}
Name Relationship Phone Email Actions
{{ parent.full_name }} {{ parent.relationship }} {{ parent.phone }} {{ parent.email|default:"-" }}
{% else %}

No parent/guardian information

{% endif %}
{% endblock %}