📊 年度統計
総問題数:
{{ year_stats.total_questions }}問
{% if year_stats.question_stats %}
問題番号別:
{% for stat in year_stats.question_stats %}
{{ stat.question_number }}({{ stat.count }})
{%- if not loop.last %}, {% endif -%}
{% endfor %}
{% endif %}
{% if year_stats.type_stats %}
📝 問題タイプ別
{% for stat in year_stats.type_stats %}
{{ stat.type }}:
{{ stat.count }}問
{% endfor %}
{% endif %}
{% endif %}