{% extends "base.html" %} {% block title %}阅读理解管理 - FlashExam{% endblock %} {% block content %}

阅读理解管理

托福TPO风格的阅读理解材料管理

{{ stats.total_passages or 0 }}

阅读材料

{{ stats.total_questions or 0 }}

相关题目

{{ stats.sources|length or 0 }}

来源分类

{{ stats.topics|length or 0 }}

主题分类

阅读材料列表
{% if passages %}
{% for passage in passages %}
{{ passage.title[:50] }}{% if passage.title|length > 50 %}...{% endif %}
{{ passage.source or '未分类' }} {{ passage.topic or '未分类' }}

{{ passage.content[:150] }}{% if passage.content|length > 150 %}...{% endif %}

字数
{{ passage.word_count }}
阅读时间
{{ passage.reading_time }}分钟
难度
{% for i in range(passage.difficulty_level) %} {% endfor %}
{% set questions = [] %} {% for p in passages %} {% if p.id == passage.id %} {% set _ = questions.extend(reading_db.get_passage_questions(passage.id) if reading_db else []) %} {% endif %} {% endfor %} 题目数量: - {% if passage.language == 'cn' %} 中文 {% else %} English {% endif %}
{% endfor %}
{% else %}

暂无阅读材料

点击"导入阅读材料"开始添加托福TPO风格的阅读理解内容

导入阅读材料
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}