{% extends 'school/base_school.html' %} {% block title %}Session Record | {{ student.name }}{% endblock %} {% block page_title %}Session History: {{ student.name }}{% endblock %} {% block content %}
Academic Sessions / Classes
{% for cls in historical_classes %}
{{ cls.name }}
ENROLLED RECORDS
{% endfor %}
{% if selected_class %}
Examination Records ({{ selected_class.name }})
{% for exam_name, records in results_grouped.items %}

{{ exam_name }} {{ records|length }} SUBJECTS

{% for r in records %} {% endfor %}
Subject Marks Grade GPA
{{ r.subject.name }} {{ r.marks }} {{ r.grade }} {{ r.gpa }}
{% empty %}
NO EXAMINATION RECORDS FOUND FOR THIS CLASS.
{% endfor %}
Institutional Billing Summary
Total Assigned Fees৳{{ total_fee }}
Total Amount Paid৳{{ total_paid }}
Remaining Due ৳{{ total_due }}
{% if total_due > 0 %} MANAGE SESSION FEES {% endif %}
Historical Presence{{ present_days }} Days
Penalty Events (Late){{ late_days }}
Total Data Logs{{ total_logs }} Logs
{% else %}
NO ACADEMIC TRACKS IDENTIFIED.

Please ensure the student is enrolled in a class and has fees or results record.

{% endif %} {% block extra_js %} {% endblock %} {% endblock %}