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

Dashboard

Monitor your RSS feeds and AI processing status

{{ feeds | length }}
Feeds
{% set t=0 %}{% for s in stats %}{% set t=t+s.article_count %}{% endfor %}{{ t }}
Articles
{% set t=0 %}{% for s in stats %}{% set t=t+s.translated_count %}{% endfor %}{{ t }}
Translated
{% set t=0 %}{% for s in stats %}{% set t=t+s.with_summary_count %}{% endfor %}{{ t }}
Summarized
{{ total_prompt_tokens + total_completion_tokens }}
Tokens

Feeds

{% for feed in feeds %} {% 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 }} -- /feeds/{{ feed.name }}
{% if feeds | length == 0 %}

No feeds configured

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

{% endif %} {% endblock %}