{% extends "base.html" %} {% block title %}Statuses{% endblock %} {% block content %} {# ── Filter Bar ──────────────────────────────────────────────────── #}
{{ total | format_number }} statuses found
{# ── Posts Table ─────────────────────────────────────────────────── #}
{% for post in posts %} {% else %} {% endfor %}
Author Text Type Created Likes Replies Reposts
{% if post.author_handle %} @{{ post.author_handle }} {% else %} {{ post.author_did[:20] }}... {% endif %} {{ post.text | truncate_text(200) }} {% if post.post_type == 'post' %} Post {% elif post.post_type == 'reply' %} Reply {% elif post.post_type == 'repost' %} Repost {% else %} {{ post.post_type }} {% endif %} {{ post.created_at | time_ago }} {{ post.like_count | format_number }} {{ post.reply_count | format_number }} {{ post.repost_count | format_number }}
No statuses found.
{# ── Pagination ──────────────────────────────────────────────────── #} {% if total_pages > 1 %} {% endif %} {% endblock %}