{% extends 'base.html' %} {% load static %} {% block title %}{{ student.get_full_name }} — Parent Portal{% endblock %} {% block content %}

{{ student.get_full_name }}

{{ student.current_class|default:"No class assigned" }} • {{ student.student_id }}

Dashboard
Attendance Rate
{{ attendance_rate }}%
{{ present_days }} / {{ total_days }} days this month
Student Status
{{ student.get_status_display }}
Quick Links
Student Information
Full Name{{ student.get_full_name }}
Student ID{{ student.student_id }}
Date of Birth{{ student.date_of_birth|date:"d M Y"|default:"—" }}
Gender{{ student.get_gender_display }}
Class{{ student.current_class|default:"—" }}
Admission Date{{ student.admission_date|date:"d M Y"|default:"—" }}
Recent Attendance
{% for att in recent_attendance %} {% empty %} {% endfor %}
DateStatus
{{ att.date|date:"d M Y" }} {{ att.get_status_display }}
No records yet
{% endblock %}