🧠 我的解读
{# 概述 #}
{% if my_analysis.overview %}
{{ my_analysis.overview }}
{% endif %}
{# 遍历每个概念 #}
{% for concept in my_analysis.concepts %}
{% include "components/_concept_block.html" %}
{% endfor %}
{# 操作步骤(概念层之后)#}
{% if my_analysis.operations %}
🔧 操作步骤
{% for op in my_analysis.operations %}
步骤 {{ loop.index }}:{{ op.step }}
{{ op.description }}
{% if op.expected_result %}
✅ 验证:{{ op.expected_result }}
{% endif %}
{% if op.pitfall %}
⚠️ 避坑:{{ op.pitfall }}
{% endif %}
{% endfor %}
{% endif %}
{# 思考题 #}
{% if my_analysis.thinking_questions %}
{% with thinking_questions = my_analysis.thinking_questions %}
{% include "components/_thinking.html" %}
{% endwith %}
{% endif %}
{% endif %}