{% extends "base.html" %} {% block title %}Accounts{% endblock %} {% block content %} {# ── Search bar ──────────────────────────────────────────────────────── #}
{# Preserve current sort parameters #}
{% if search %} Clear {% endif %}
{# ── Sortable column header macro ────────────────────────────────────── #} {% macro sort_header(col, label) %} {% set new_dir = 'desc' if (sort == col and direction == 'asc') else 'asc' %} {{ label }} {% if sort == col %} {% if direction == 'asc' %}▲{% else %}▼{% endif %} {% endif %} {% endmacro %} {# ── Accounts table ──────────────────────────────────────────────────── #} {% if accounts %}
{% for acct in accounts %} {% endfor %}
{{ sort_header('handle', 'Handle') }} {{ sort_header('posts', 'Posts') }} {{ sort_header('mentions', 'Mentions') }} {{ sort_header('last_feed', 'Last Feed') }} {{ sort_header('last_mention', 'Last Mention') }}
@{{ acct.handle }} {% if acct.display_name %} {{ acct.display_name | truncate_text }} {% endif %} {{ acct.post_count | format_number }} {{ acct.mention_count | format_number }} {{ acct.last_feed_collected | time_ago }} {{ acct.last_mention_collected | time_ago }}
{% else %}
{% if search %}

No accounts found matching "{{ search }}".

{% else %}

No tracked accounts yet.

{% endif %}
{% endif %} {# ── Pagination ──────────────────────────────────────────────────────── #} {% if total_pages > 1 %} {% endif %} {% endblock %} {% block extra_css %} {% endblock %}