{% extends "base.html" %}
{% block title %}Status Detail — Mastodon Collector{% endblock %}
{% block content %}
{{ status.status_type }}
{{ status.created_at.strftime('%Y-%m-%d %H:%M:%S UTC') if status.created_at }}
| Account |
{{ status.account.handle }}{% if status.account.display_name %} — {{ status.account.display_name }}{% endif %} |
| Visibility |
{{ status.visibility }} |
| Language |
{{ status.language or 'Unknown' }} |
{% if status.in_reply_to_id %}
| In Reply To |
Status {{ status.in_reply_to_id }}{% if status.in_reply_to_account_id %} (account {{ status.in_reply_to_account_id }}){% endif %} |
{% endif %}
{% if status.conversation_id %}
| Conversation |
{{ status.conversation_id }} |
{% endif %}
| Interactions |
↩ {{ status.replies_count }} replies ⟳ {{ status.reblogs_count }} reblogs ★ {{ status.favourites_count }} favourites |
{% if status.sensitive %}
| Sensitive |
Yes{% if status.spoiler_text %} — {{ status.spoiler_text }}{% endif %} |
{% 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 }})
| Account | URL |
{% for m in status.mentions %}
| @{{ m.mentioned_acct }} |
{{ m.mentioned_url }} |
{% endfor %}
{% endif %}
{% if status.media_attachments %}
Media Attachments ({{ status.media_attachments|length }})
| Type | Description | URL |
{% for ma in status.media_attachments %}
| {{ ma.media_type }} |
{{ ma.description or '—' }} |
View ↗ |
{% endfor %}
{% 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 %}