{% extends "base.html" %} {% block title %}RSS阅读器 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ total_items }}
总文章数
{{ today_items }}
今日新增
{{ p3_items }}
P3级政策
重置
{% if items %}
{% for item in items %}

{{ item.title }}

{% if item.level %} {{ item.get_level_display }} {% endif %}
{{ item.rss_source.name }} 发布时间: {{ item.event_date|date:"Y-m-d" }} 抓取时间: {{ item.created_at|date:"Y-m-d H:i" }} {% if item.info_category %} 分类: {{ item.get_info_category_display }} {% endif %}
{% if item.description %}
{{ item.description|truncatewords:100|safe }}
{% endif %}
{% endfor %}
{% if is_paginated %}
{% if page_obj.has_previous %} « {% endif %} 第 {{ page_obj.number }} 页,共 {{ page_obj.paginator.num_pages }} 页 {% if page_obj.has_next %} » {% endif %}
{% endif %} {% else %}

暂无文章

点击"抓取"按钮获取最新内容,或检查RSS源配置

{% endif %}
{% endblock %}