{% extends "base.html" %} {% load static %} {% block title %}RSS源管理 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

RSS 源管理

政策与情绪摄入链路的源配置页,用于维护 RSS 源、查看状态并进入阅读器和日志链路。

入口说明: 当前页属于政策摄入链路的运维配置页; 阅读与审核回到政策工作台和 RSS 阅读器; 全局管理员值守动作请回管理控制台。
重置
{% if sources %} {% for source in sources %} {% endfor %}
源名称 分类 URL / RSSHub 状态 超时 最后抓取 最后状态 操作
{{ source.name }} {{ source.get_category_display }} {% if source.rsshub_enabled %} RSSHub {{ source.rsshub_route_path|truncatechars:40 }} {% else %} {{ source.url|truncatechars:50 }} {% endif %} {% if source.is_active %} 启用 {% else %} 禁用 {% endif %} {{ source.timeout_seconds }}s {% if source.last_fetch_at %} {{ source.last_fetch_at|date:"m-d H:i" }} {% else %} - {% endif %} {% if source.last_fetch_status %} {{ source.last_fetch_status }} {% else %} - {% endif %}
编辑
{% if is_paginated %} {% endif %} {% else %}

暂无 RSS 源

点击右上角"添加源"按钮添加第一个 RSS 源

{% endif %}
{% endblock %}