{% extends 'base.html' %} {% block title %}Topic Scores | Teacher Dashboard{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Topic Scores Overview

View student performance across all topics

Filters

Student Scores

{% if student_scores %}
{% if not selected_topic_id %} {% endif %} {% for student_id, student_data in student_scores.items() %} {% if not selected_topic_id %} {% endif %} {% endfor %}
Student Total Submissions Average ScoreTopics CompletedActions
{{ student_data.student.username[:2].upper() }}
{{ student_data.student.username }}
{{ student_data.student.email }}
{{ student_data.total_submissions }} {% set score = student_data.total_score %} {{ score }}% {{ student_data.topics|length }}
{% else %}

No Data Available

No reviewed submissions found for the selected criteria.

{% endif %}
{% endblock %}