{% from "partials/header.html" import header with context %} {{ app_name }} v{{ app_version }} - Hashtag Streams {{ header('streams') }}

Hashtag Streams

Monitor and manage Fediverse hashtag streams.

Add New Stream

Enter without the # symbol

Streams

{{ streams|length }} streams
{% if streams %}
{% for stream in streams %}

#{{ stream.hashtag }}

{% if stream.active %} Active {% else %} Paused {% endif %}

{{ stream.instance }}

Created {{ stream.created_at }}

{% if stream.last_check %}

Last fetched {{ stream.last_check }} {% if stream.last_fetch_count is not none %} ({{ stream.last_fetch_count }} fetched) {% endif %}

{% endif %} {% if stream.enable_scheduling %}

Fetching every {{ stream.fetch_interval_minutes }} minutes

{% if stream.next_scheduled_fetch %}

Next fetch {{ stream.next_scheduled_fetch }}

{% endif %} {% else %}

Scheduling disabled

{% endif %}
{% endfor %}
{% else %}

No streams configured yet.

{% endif %}