{% extends "base.html" %} {% block title %}My Results{% endblock %} {% block content %}

My Submission Results

View your submissions and teacher feedback

Back to Dashboard
{% if submissions %}
{% for submission in submissions %}
{% if submission.content_type == 'comprehension' %}
{% else %}
{% endif %}

{{ submission.progress.topic.title }}

{{ submission.status|replace('_', ' ')|title }} {{ submission.content_type|capitalize }} {% if submission.is_teacher_reviewed %} Teacher Reviewed {% else %} AI Assessed {% endif %}

Submitted: {{ submission.created_at.strftime('%d %b %Y, %I:%M %p') }}

{% if submission.reviewed_at %}

Reviewed: {{ submission.reviewed_at.strftime('%d %b %Y, %I:%M %p') }}

{% endif %} {% if submission.teacher_feedback %}
Teacher Feedback:

{{ submission.teacher_feedback[:150] }}{% if submission.teacher_feedback|length > 150 %}...{% endif %}

{% endif %}
{{ submission.final_score|round(1) if submission.final_score else 'N/A' }} Score
{% if submission.teacher_score is not none %}
Teacher Score
(AI: {{ submission.score|round(1) if submission.score else 'N/A' }}%)
{% else %}
AI Score
{% endif %}
View Details
{% endfor %}
{% else %}

No Results Found

{% if status_filter != 'all' or content_type_filter != 'all' %} No submissions match your current filters. Try adjusting your filters. {% else %} You haven't submitted any work yet. Start learning to see your results here! {% endif %}

{% if status_filter != 'all' or content_type_filter != 'all' %} Clear Filters {% else %} Go to Dashboard {% endif %}
{% endif %}
{% endblock %}