{% extends "base.html" %} {% block title %}Statuses{% endblock %} {% block content %}
Browse and search collected posts, replies, and reposts.
| 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. | ||||||