{% extends "base.html" %} {% block title %}Mentions{% endblock %} {% block content %} {# ── Filter Bar ──────────────────────────────────────────────────── #}
{{ total | format_number }} mentions found
{# ── Mentions Table ──────────────────────────────────────────────── #}
{% for mention in mentions %} {% else %} {% endfor %}
Mentioned Account Mentioning User Text Created
{% if mention.mentioned_handle %} @{{ mention.mentioned_handle }} {% else %} {{ mention.mentioned_did[:25] }}... {% endif %} {{ mention.mentioning_did[:30] }}... {% if mention.post_uri %} {{ mention.post_text | truncate_text(200) }} {% else %} {{ mention.post_text | truncate_text(200) }} {% endif %} {{ mention.post_created_at | time_ago }}
No mentions found.
{# ── Pagination ──────────────────────────────────────────────────── #} {% if total_pages > 1 %} {% endif %} {% endblock %}