{% extends "base.html" %} {% block title %}QuizTrainer - 首页{% endblock %} {% block content %}
{{ stats.total_questions | default(0) }}
总答题数
{{ stats.correct_count | default(0) }}
答对题目
{{ stats.accuracy | default(0) }}%
正确率
{{ categories | length }}
题库分类

题型分布

选择题
{{ type_counts.choice | default(0) }}
判断题
{{ type_counts.truefalse | default(0) }}
填空题
{{ type_counts.fill | default(0) }}
问答题
{{ type_counts.essay | default(0) }}

快速开始

题库分类
{% if categories %}
{% for category in categories %}

{{ category.name }}

难度分布: 简单 {{ category.difficulty_dist.easy }} / 中等 {{ category.difficulty_dist.medium }} / 困难 {{ category.difficulty_dist.hard }}

{{ category.question_count }} 道题目
{% endfor %}
{% else %}

暂无题库

请先添加题目到题库

{% endif %}
{% if stats.recent_history %}
最近答题
{% for item in stats.recent_history[:5] %}
{% if item.is_correct %} {% else %} {% endif %}
{{ item.timestamp[:10] }}
{% endfor %}
{% endif %} {% endblock %}