{% extends "base.html" %} {% set active = 'news' %} {% block title %}资讯列表 - 新闻智能跟踪{% endblock %} {% block content %}

📰 资讯列表 共 {{ total }} 条

重置
{% for a in articles %}
{{ a.title }}
{{ a.total_score }} {% if a.is_important %}重要{% endif %} {{ a.domain }} {{ a.source_name }} {{ a.published_at }} {% if a.llm_status=='done' %}已深析{% elif a.llm_status=='pending' %}分析中{% endif %}
{{ a.summary or (a.content[:100] if a.content else '') }}
{% else %}
没有匹配的资讯
{% endfor %}
{% if page > 1 %}上一页{% endif %} 第 {{ page }} / {{ pages }} 页 {% if page < pages %}下一页{% endif %}
{% endblock %}