{% extends 'base.html' %} {% load static dict_extras %} {% block title %}Combined Assessments{% endblock %} {% block content %}
Generate and print consolidated student performance across multiple assessment stages.
{{ report_state_message }}
No report data is available for the selected criteria.
| # | Subject | {% for at in selected_assessment_types %}{{ at.name }} | {% endfor %}Average | |
|---|---|---|---|---|
| {{ forloop.counter }} | {{ subj }} | {% for at in selected_assessment_types %} {% with sdata=row.subjects|get_item:subj %} {% if sdata %} {% with score=sdata.scores|get_item:at.id %}{{ score|default:"-" }} | {% endwith %} {% else %}- | {% endif %} {% endwith %} {% endfor %} {% with sdata=row.subjects|get_item:subj %}{% if sdata and sdata.avg is not None %} {{ sdata.avg }} {% else %} - {% endif %} | {% endwith %}
Apply filters to view results.