{% extends "base.html" %} {% block content %}
{% if page.report and page.selected_file %}
{{ page.title }}

{{ page.report.title }}

{% if page.report.subtitle %}

{{ page.report.subtitle }}

{% endif %}
{% if page.report.report_time %} 创建时间:{{ page.report.report_time }} {% endif %} 文件:{{ page.selected_file.name }} 章节:{{ page.report.sections|length }} 表格:{{ page.report.table_count }}
{% if page.report.highlights %}
{% for item in page.report.highlights %} {{ item }} {% endfor %}
{% endif %} {% if page.report.intro_html %}
{{ page.report.intro_html }}
{% endif %}
{% for item in page.summary_cards %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% if page.charts %}
{% for chart in page.charts %}

{{ chart.title }}

{% if chart.subtitle %}

{{ chart.subtitle }}

{% endif %}
{% for item in chart.bars %}
{{ item.label }} {% if item.secondary %} {{ item.secondary }} {% endif %}
{{ item.display }}
{% endfor %}
{% endfor %}
{% endif %} {% endif %}
{% if page.report and page.selected_file %}

报告正文

{% for section in page.report.sections %}

{{ section.title }}

{{ section.body_html }}
{% endfor %}
{% else %}

暂无板块分析报告

{{ page.empty_hint }}

{% endif %}
{% endblock %}