{% extends "base.html" %} {% block title %}Flagged Content{% endblock %} {% block content %}
| Type | {{ sort_header('author_handle', 'Author') }} | Content | {{ sort_header('overall', 'Score') }} | Category | {{ sort_header('created_at', 'Created') }} | Review |
|---|---|---|---|---|---|---|
| {% if item.item_type == 'post' %} Post {% elif item.item_type == 'reply' %} Reply {% elif item.item_type == 'mention' %} Mention {% endif %} | {% if item.author_handle %} @{{ item.author_handle }} {% else %} {% endif %} {% if item.item_type == 'mention' and item.mentioned_handle %} → @{{ item.mentioned_handle }} {% endif %} | {% if item.source_type == 'post' %} {{ item.text | truncate_text(200) }} {% else %} {# Convert at://did:plc:xxx/app.bsky.feed.post/yyy to https://bsky.app/profile/handle/post/yyy #} {% set uri_parts = item.item_id.replace('at://', '').split('/') %} {% if uri_parts|length >= 3 and item.author_handle %} {{ item.text | truncate_text(200) }} {% else %} {{ item.text | truncate_text(200) }} {% endif %} {% endif %} | {% if item.top_category %} {{ item.top_category }} {% else %} — {% endif %} | {{ item.created_at | time_ago }} |
No flagged content found
Try adjusting your filters or threshold