{% extends "base.html" %} {% block title %}RSS Feeds — Admin{% endblock %} {% block content %}

RSS Feeds — Admin

Manage the list of RSS / Atom feeds available to BBS users.

Add Feed Reader View
{% if feeds %} {% for feed in feeds %} {% endfor %}
Sort Name URL Items Last fetched Status
{{ feed.sort_order }} {{ feed.name }} {% if feed.description %}
{{ feed.description }} {% endif %}
{{ feed.url }} {{ counts[feed.id] }} {% if feed.last_fetched_at %} {{ feed.last_fetched_at.strftime('%Y-%m-%d %H:%M UTC') }} {% else %} never {% endif %} {% if not feed.is_active %} disabled {% elif feed.last_error %} error {% else %} ok {% endif %}
{% else %}
No RSS feeds yet. Click Add Feed to add one.
{% endif %} {% endblock %}