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

Collected Statuses ({{ total }})

Export CSV
{% if current_account_id or current_type or search %} Clear {% endif %}
{% for s in statuses %} {% endfor %} {% if not statuses %} {% endif %}
Date Account Type Content Interactions
{{ s.created_at.strftime('%Y-%m-%d %H:%M') if s.created_at }} {{ s.account.handle }} {{ s.status_type }}
{{ s.text_content[:200] }}{% if s.text_content and s.text_content|length > 200 %}...{% endif %}
{% if s.tags %}
{% for t in s.tags %} #{{ t.name }} {% endfor %}
{% endif %}
↩ {{ s.replies_count }}   ⟳ {{ s.reblogs_count }}   ★ {{ s.favourites_count }} View
No statuses found. The collector runs every {{ (config.get('POLL_INTERVAL_SECONDS', 14400)|int // 3600) }} hours, or you can wait for the first collection cycle.
{% if total_pages > 1 %} {% endif %} {% endblock %}