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

Dashboard

Monitor your RSS feeds and AI processing status

{% set feeds_count = feeds | length %} {% set total_articles = 0 %} {% set total_translated = 0 %} {% set total_with_summary = 0 %} {% for s in stats %} {% set total_articles = total_articles + s.article_count %} {% set total_translated = total_translated + s.translated_count %} {% set total_with_summary = total_with_summary + s.with_summary_count %} {% endfor %} {% include "partials/stats_bar.html" %}

Feeds

{% for feed in feeds %} {% set fs = feed_statuses | get(key=feed.name) %} {% endfor %}
NameStatusArticlesTranslatedSummarizedLast FetchRSS
{{ feed.name }} {% set c=0 %}{% for s in stats %}{% if s.feed_name==feed.name %}{% set c=s.article_count %}{% endif %}{% endfor %}{{ c }} {% set c=0 %}{% for s in stats %}{% if s.feed_name==feed.name %}{% set c=s.translated_count %}{% endif %}{% endfor %}{{ c }} {% set c=0 %}{% for s in stats %}{% if s.feed_name==feed.name %}{% set c=s.with_summary_count %}{% endif %}{% endfor %}{{ c }} {% if fs and fs.last_fetch_at %}{{ fs.last_fetch_at | truncate(length=19) }}{% else %}--{% endif %} /feeds/{{ feed.name }}
{% if feeds | length == 0 %}

No feeds configured

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

{% endif %} {% endblock %}