{% extends "base.html" %} {% block content %}

User Details: {{ username }}

Statistics

{{ stats.total_questions }}
Total Questions
{{ stats.correct_answers }}
Correct Answers
{{ stats.overall_correctness }}%
Overall Score
{{ stats.recent_100_score }}%
Recent 100 Score

Answer History

{% if history %} {% for record in history %} {% endfor %}
Date/Time Question Equation Your Answer Correct Answer Result Category
{{ record.timestamp.strftime('%Y-%m-%d %H:%M') }} {{ record.question }} {{ record.equation }} {% if record.user_answer is not none %}{{ record.user_answer|int }}{% else %}N/A{% endif %} {{ record.correct_answer|int }} {% if record.is_correct %} ✓ Correct {% else %} ✗ Incorrect {% endif %} {{ record.category }}
{% else %}

No answer history yet.

{% endif %}
Back to Users Take Exam
{% endblock %}