{% extends "base.html" %} {% set active = 'logs' %} {% block title %}通知日志 - 新闻智能跟踪{% endblock %} {% block content %}

✉️ 通知日志 共 {{ total }} 条

重置
{% for l in logs %} {% else %} {% endfor %}
ID类型主题条数状态发送时间
{{ l.id }} {% if l.type=='realtime' %}🔥 实时 {% elif l.type=='summary' %}📰 新闻汇总 {% elif l.type=='custom_summary' %}🎯 定制汇总 {% elif l.type=='error' %}⚠️ 系统错误 {% else %}{{ l.type }}{% endif %} {{ l.subject }} {% if l.detail %}
{{ l.detail }}
{% endif %}
{{ l.count }} {% if l.status=='ok' %}成功{% else %}失败{% endif %} {{ l.sent_at }}
暂无匹配的通知记录
{% if page > 1 %}上一页{% endif %} 第 {{ page }} / {{ pages }} 页 {% if page < pages %}下一页{% endif %}
{% endblock %} {% block script %} {% endblock %}