Files
report-admin/templates/era2/sections/conclusion.html
T
lofyerandfactory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com> 71db82393a Initial commit
Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
2026-07-13 15:38:41 +08:00

41 lines
1.6 KiB
HTML

{# 总结与建议 #}
<div class="section" id="conclusion">
<h1>{{ t.p10_h1 }}</h1>
{# ===== 最紧迫的三件事(置顶,让校长第一时间看到) ===== #}
{% if llm_sections.get('part10_top3_priorities') %}
<div class="top3-box" style="background: linear-gradient(135deg, #eff6ff, #dbeafe); border: 2px solid #3b82f6; border-radius: 12px; padding: 24px; margin: 0 0 24px 0;">
<h2 style="color: #1e40af; margin: 0 0 16px 0; font-size: 20px;">{{ t.p10_h2_top3 }}</h2>
<p style="color: #1e3a5f; font-size: 14px; margin: 0 0 16px 0; font-style: italic;">{{ t.top3_intro }}</p>
<div class="llm-analysis">
{{ llm_sections.get('part10_top3_priorities') | safe }}
</div>
</div>
{% endif %}
{# ===== 跨维度综合分析 ===== #}
{% if llm_sections.get('part10_cross_dimension') %}
<h2>{{ t.p10_h2_cross }}</h2>
<div class="llm-analysis">
{{ llm_sections.get('part10_cross_dimension') | safe }}
</div>
{% endif %}
<!-- D. 进步空间瀑布图 -->
{% if waterfall_data and waterfall_data.improvements %}
<h2>{{ t.p10_h2_improve }}</h2>
<div class="chart-box">
<div id="waterfall-chart" class="chart" style="height:400px"></div>
<div class="chart-title">{{ t.p10_fig_waterfall }}</div>
</div>
<div class="chart-caption">
{{ llm_sections.get('part10_caption_waterfall', '') | safe }}
</div>
{% endif %}
<h2>{{ t.p10_h2_review }}</h2>
<div class="llm-analysis">
{{ llm_sections.get('part10_conclusion', '<p>' + t.loading + '</p>') | safe }}
</div>
</div>