{% extends "base.html" %} {% block content %}

Threads{% if account %} for {{ account }}{% endif %}

Latest updated threads. Click an ID to view details and AI analysis.

{% if status %}
{% if status.sync_in_progress %} Syncing… {% else %} {% if status.last_sync_status == 'ok' %} Last sync OK {% elif status.last_sync_status == 'error' %} Last sync error {% else %} Idle {% endif %} {% endif %} Last Sync: {{ status.last_sync_at or 'never' }} Items: {{ status.last_sync_count }} {% if status.last_sync_error %}
Error: {{ status.last_sync_error }}
{% endif %} {% if status.auto_process %}
Auto process enabled (every {{ status.interval }}m)
{% endif %}
{% endif %}
{% for t in threads %} {% else %} {% endfor %}
ID Subject AI Summary Account Msgs Requires Reply Last Message
{{ t.frontend_id }} {{ t.thread.subject }} {{ t.thread.ai_summary or '' }} {{ t.thread.account_email }} {{ t.thread.messages|length }} {% if t.thread.requires_reply %} Needs reply {% else %} Up to date {% endif %} {{ t.formatted_date }}
No threads yet
{% endblock %}