{% extends "base.html" %} {% set active = 'dashboard' %} {% block title %}仪表盘 - 新闻智能跟踪{% endblock %} {% block content %}

📊 仪表盘

{{ stats.total }}
资讯总数
{{ stats.important }}
重要资讯
{{ stats.notified }}
已通知
{{ stats.pending_llm }}
待深度分析

🔥 重要资讯 TOP

{% for a in important %}
{{ a.title }}
{{ a.total_score }} {{ a.domain }} {{ a.published_at }}
{% else %}
暂无重要资讯
{% endfor %}

🗂️ 领域分布

{% for d in domain_stats %}
{{ d.name }}
{{ d.count }}
{% endfor %}

🕒 最新收录

{% for a in latest %}
{{ a.title }}
{{ a.total_score }} {{ a.source_name }} {{ a.collected_at }}
{% else %}
尚未收录资讯,点击「立即采集」
{% endfor %}
{% endblock %} {% block script %} {% endblock %}