{% 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 %} {% set thread_messages = messages_by_thread.get(thread.id, []) %}
{% if thread_messages %} {% 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 %}