{% extends "dashboard/base.html" %} {% block title %}Email Threads - Cyborg Dashboard{% endblock %} {% block content %}

Email Threads

View and manage email conversation threads and their agendas.

{{ threads|length }}
Total Threads
{{ active_count }}
Active
{{ inbox_count }}
Inboxes
{% for thread in threads %}

{{ thread.subject or "(no subject)" }}

{% if thread.is_active %} Active {% else %} Inactive {% endif %}
{{ thread.id[:8] }} {{ thread.message_count }} message{{ 's' if thread.message_count != 1 else '' }} {% if thread.contact_email %} {{ thread.contact_email }} {% endif %} {% if thread.last_message_at %} Last: {{ thread.last_message_at|relative_time }} {% endif %}
AGENDA
{{ thread.agenda or "(no agenda set)" }}
{% endfor %}
{% if not threads %}

No email threads yet

Email threads will appear here when emails are sent or received.

{% endif %} {% endblock %}