{% extends "base.html" %} {% block title %}QuizTrainer - 答题历史{% endblock %} {% block content %}
{{ user_data.total_questions }}
总答题数
{{ user_data.correct_count }}
答对题目
{{ user_data.total_questions - user_data.correct_count }}
答错题目
{{ user_data.accuracy }}%
正确率
{% if stats.category_stats %}

分类统计

{% for category, stat in stats.category_stats.items() %}
{{ category }}
{{ stat.correct }}/{{ stat.total }}
{% endfor %}
{% endif %}

最近答题记录

{% if history %}
{% for item in history %}
{% if item.record.is_correct %} {% else %} {% endif %}
{{ item.question.question[:100] }}{% if item.question.question | length > 100 %}...{% endif %}
{{ item.question.type_display }} {{ item.question.difficulty_display }} {{ item.question.category }} {{ item.record.timestamp[:19] }}
{% if not item.record.is_correct %}
正确答案: {{ item.question.answer }}
{% endif %}
{% endfor %}
{% else %}

暂无答题记录

开始答题来积累你的学习记录吧

开始答题
{% endif %}
{% endblock %}