{% extends "base.html" %} {% block title %}Statuses — Mastodon Collector{% endblock %} {% block content %}
| 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. | |||||