Student Performance Report

{{ student.username }}

Email: {{ student.email }}

Teacher: {{ teacher_name }}

Report Generated: {{ generated_date.strftime('%B %d, %Y at %I:%M %p') }}

Total Submissions

{{ total_submissions }}

Overall Average

{{ overall_avg }}%

Topics Covered

{{ topics_data|length }}
{% if topics_data %} {% for topic_id, topic_data in topics_data.items() %}

{{ topic_data.topic.title }}

{% if topic_data.submissions %} {% for submission_data in topic_data.submissions %} {% endfor %}
Submission Date Content Type Score
{{ submission_data.submitted_at.strftime('%m/%d/%Y %I:%M %p') }} {{ submission_data.content_type.title() if submission_data.content_type else 'N/A' }} {% set score = submission_data.grade %} {{ score }}%
Topic Average: {{ topic_data.avg_score }}%
{% else %}
No submissions found for this topic.
{% endif %}
{% endfor %} {% else %}

No Performance Data Available

This student has not submitted any reviewed assignments yet.

{% endif %}