Files
hot_comment_radar/app/templates/hotspots/report.html
T

27 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ hotspot.title }} 汇总报告 - 热榜评论分析工具{% endblock %}
{% block breadcrumbs %}
<nav aria-label="breadcrumb"><ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/">首页</a></li>
<li class="breadcrumb-item"><a href="/tasks/{{ task.id }}">任务 #{{ task.id }}</a></li>
<li class="breadcrumb-item active">汇总报告</li>
</ol></nav>
{% endblock %}
{% block content %}
<div class="d-flex justify-content-between align-items-center mb-3">
<h1 class="h3 mb-0">{{ hotspot.title }} 汇总报告</h1>
<div class="d-flex gap-2">
<a class="btn btn-outline-primary" href="/api/export/hotspots/{{ hotspot.id }}.md">导出 Markdown 报告</a>
<a class="btn btn-outline-secondary" href="/api/export/hotspots/{{ hotspot.id }}/comments.csv">导出热点评论 CSV</a>
</div>
</div>
{% if report %}
<section class="card"><div class="card-body">
<p class="lead">{{ report.summary }}</p>
<pre class="bg-light p-3">{{ report.markdown_content }}</pre>
</div></section>
{% else %}
<div class="alert alert-secondary">报告生成中,请稍候...</div>
{% endif %}
{% endblock %}