{% extends "base.html" %} {% block title %}QuizTrainer - 答题完成{% endblock %} {% block content %}
{{ results.total_answered }}
已答题数
{{ results.correct }}
答对题目
{{ results.wrong }}
答错题目
{{ results.accuracy }}%
正确率
{{ results.accuracy }}%
正确率
{% if results.wrong_questions %}

错题回顾 ({{ results.wrong_questions | length }} 道)

{% for item in results.wrong_questions %}
{{ item.question.question }}
{{ item.question.type_display }} 正确答案: {{ item.question.answer }} 你的答案: {{ item.user_answer }}
{% if item.question.explanation %}
解析: {{ item.question.explanation[:100] }}{% if item.question.explanation | length > 100 %}...{% endif %}
{% endif %}
{% endfor %}
{% endif %}
返回首页 再来一组 查看历史
{% endblock %} {% block extra_head %} {{ super() }} {% endblock %}