27 lines
952 B
HTML
27 lines
952 B
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.display_id }}</a></li>
|
|
<li class="breadcrumb-item active">汇总报告</li>
|
|
</ol></nav>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="page-heading">
|
|
<div>
|
|
<p class="section-kicker">热点报告</p>
|
|
<h1>{{ hotspot.title }} 汇总报告</h1>
|
|
</div>
|
|
<span class="badge text-bg-light border">热点 #{{ hotspot.rank }}</span>
|
|
</div>
|
|
{% if report %}
|
|
{% include "partials/report_panel.html" %}
|
|
{% else %}
|
|
<div class="empty-state text-muted py-5">
|
|
<div class="spinner-border text-warning mb-3" role="status"></div>
|
|
<p class="mb-0">报告生成中,请稍候...</p>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|