{% extends "base.html" %} {% block title %}My Results{% endblock %} {% block nav_results_student %}active{% endblock %} {% block content %} {% if not enrollment %}

You are not currently enrolled in any program.

{% elif not grouped_results %}

No results have been recorded yet.

Check back after your term assessments.

{% else %}
{% for academic_year, terms in grouped_results.items %} {% with yi=forloop.counter %}

{% for term_label, course_blocks in terms.items %}

{% for block in course_blocks %}
{{ block.course.name }} {% if block.final %} Final Grade {{ block.final.grade }} {{ block.final.marks }}% {% endif %}
{% for result in block.results %} {% endfor %}
Assessment Grade Marks Notes
{{ result.get_grade_type_display }} {{ result.grade }} {% if result.marks is not None %}{{ result.marks }}/100{% else %}—{% endif %} {{ result.notes|default:"—" }}
{% endfor %}
{% endfor %}
{% endwith %} {% endfor %}

Grade Key: A Distinction (80–100%)   B Credit (65–79%)   C Pass (50–64%)   D Partial Pass (40–49%)   F Fail (0–39%)

Final Grade is weighted: Theory 30% + Practical 40% + End-of-Term Exam 30% (re-weighted automatically when a component has not yet been recorded).

{% endif %} {% endblock %}