{% extends "base.html" %} {% block title %}rssume Dashboard{% endblock %} {% block content %}

Dashboard

Monitor your RSS feeds and AI processing status

{% include "partials/stats_bar.html" %}

Feeds

{% for f in feed_rows %} {% endfor %}
NameStatusArticlesTranslatedSummarizedLast FetchRSS
{{ f.name }} {{ f.article_count }} {{ f.translated_count }} {{ f.with_summary_count }} {% if f.last_fetch_at %}{{ f.last_fetch_at | truncate(length=19) }}{% else %}--{% endif %} /feeds/{{ f.name }}
{% if feed_rows | length == 0 %}

No feeds configured

Add RSS feeds to your config.toml to get started.

{% endif %} {% endblock %}