{% extends "base.html" %} {% block title %}Status Detail — Mastodon Collector{% endblock %} {% block content %}
← Back

Status Detail

{{ status.status_type }} {{ status.created_at.strftime('%Y-%m-%d %H:%M:%S UTC') if status.created_at }}
{% if status.url %} View on Mastodon ↗ {% endif %}
{% if status.in_reply_to_id %} {% endif %} {% if status.conversation_id %} {% endif %} {% if status.sensitive %} {% endif %}
Account {{ status.account.handle }}{% if status.account.display_name %} — {{ status.account.display_name }}{% endif %}
Visibility {{ status.visibility }}
Language {{ status.language or 'Unknown' }}
In Reply To Status {{ status.in_reply_to_id }}{% if status.in_reply_to_account_id %} (account {{ status.in_reply_to_account_id }}){% endif %}
Conversation {{ status.conversation_id }}
Interactions ↩ {{ status.replies_count }} replies   ⟳ {{ status.reblogs_count }} reblogs   ★ {{ status.favourites_count }} favourites
Sensitive Yes{% if status.spoiler_text %} — {{ status.spoiler_text }}{% endif %}
Mastodon Status ID {{ status.status_id }}
URI {{ status.uri }}

Content (HTML)

{{ status.content | safe }}

Content (Plain Text)

{{ status.text_content }}
{% if status.mentions %}

Mentions ({{ status.mentions|length }})

{% for m in status.mentions %} {% endfor %}
AccountURL
@{{ m.mentioned_acct }} {{ m.mentioned_url }}
{% endif %} {% if status.media_attachments %}

Media Attachments ({{ status.media_attachments|length }})

{% for ma in status.media_attachments %} {% endfor %}
TypeDescriptionURL
{{ ma.media_type }} {{ ma.description or '—' }} View ↗
{% endif %} {% if status.tags %}

Tags

{% for t in status.tags %} #{{ t.name }} {% endfor %}
{% endif %}

Raw JSON

Click to expand
{{ status.raw_json | tojson(indent=2) }}
{% endblock %}