Welcome, {{ user.full_name }} Edit Profile

Enrollment No: {{ user.enrollment_number }}

Email: {{ user.email }}

Student No: {{ user.student_number or '-' }}

Parent No: {{ user.parent_number or '-' }}

Parent Email: {{ user.parent_email or '-' }}


Overall Attendance Average: Calculating...

Class Information

Current Class: {{ user.selected_class }}

Regular Subjects

{% for subject in selected_regular_subjects %} {% endfor %}
Subject Attendance Count Total Count Percentage
{{ subject }} {{ subject_attendance['regular'].get(subject, {}).get('attendance', 0) }} {{ subject_attendance['regular'].get(subject, {}).get('total', 0) }} {% set attendance = subject_attendance['regular'].get(subject, {}).get('attendance', 0) %} {% set total = subject_attendance['regular'].get(subject, {}).get('total', 0) %} {% if total > 0 %} {{ (attendance / total * 100) | round(2) }}% {% else %} N/A {% endif %}

Specialization Subjects

{% for subject in selected_specializations %} {% endfor %}
Specialization Subject Attendance Count Total Count Percentage
{{ subject }} {{ subject_attendance['specialization'].get(subject, {}).get('attendance', 0) }} {{ subject_attendance['specialization'].get(subject, {}).get('total', 0) }} {% set attendance = subject_attendance['specialization'].get(subject, {}).get('attendance', 0) %} {% set total = subject_attendance['specialization'].get(subject, {}).get('total', 0) %} {% if total > 0 %} {{ (attendance / total * 100) | round(2) }}% {% else %} N/A {% endif %}

Practical Subjects

{% for subject in selected_practicals %} {% endfor %}
Practical Subject Batch Attendance Count Total Count Percentage
{{ subject }} {{ user.selected_batch or 'N/A' }} {{ subject_attendance['practical'].get(subject, {}).get('attendance', 0) }} {{ subject_attendance['practical'].get(subject, {}).get('total', 0) }} {% set attendance = subject_attendance['practical'].get(subject, {}).get('attendance', 0) %} {% set total = subject_attendance['practical'].get(subject, {}).get('total', 0) %} {% if total > 0 %} {{ (attendance / total * 100) | round(2) }}% {% else %} N/A {% endif %}

Class Teacher Details

{% for teacher in teachers %} {% endfor %}
Name Email Phone
{{ teacher.full_name }} {% if teacher.email %} {{ teacher.email }} {% else %} Not provided {% endif %} {% if teacher.phone_number %} {{ teacher.phone_number }} {% else %} Not provided {% endif %}
{% if face_exists %} Re-register Face {% else %} Register Face {% endif %}
Logout