{% extends "base.html" %} {% block title %}Accounts — Mastodon Collector{% endblock %} {% block content %}

Monitored Accounts

Add Account

You can also add accounts by editing accounts.txt — the collector picks them up automatically.

{% for acct in accounts %} {% endfor %} {% if not accounts %} {% endif %}
Handle Display Name Account ID Status Last Collected Actions
{{ acct.handle }} {{ acct.display_name or '—' }} {{ acct.account_id or 'unresolved' }} {% if acct.is_active %} Active {% else %} Paused {% endif %} {{ acct.last_collected_at.strftime('%Y-%m-%d %H:%M') if acct.last_collected_at else 'Never' }}
No accounts yet. Add one above or edit accounts.txt.
{% endblock %}