Files
email_alerts_v2/templates/threads.html
T
bolade d553d6f31e Implement email alert system with WhatsApp notifications
- Added alerts processing logic in src/alerts.py to analyze threads and send WhatsApp alerts based on configured time frames.
- Created FastAPI application in src/app.py to manage threads, display configurations, and trigger alert processing.
- Developed database models and utility functions in src/database.py for managing threads and messages.
- Integrated Twilio API for sending WhatsApp messages in src/whatsapp_sender.py.
- Implemented Zoho email client in src/zoho_client.py to fetch emails and check for replies.
- Added configuration management for email settings and alert parameters.
- Established auto-processing loop for periodic email syncing and alert generation.
2025-08-11 17:34:35 +01:00

70 lines
2.4 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="row mb-2">
<div class="col">
<h2>Threads{% if account %} for {{ account }}{% endif %}</h2>
<p class="muted">Latest updated threads. Click an ID to view details and AI analysis.</p>
{% if status %}
<div class="muted" style="margin-top:6px;">
{% if status.sync_in_progress %}
<span class="badge brand">Syncing…</span>
{% else %}
{% if status.last_sync_status == 'ok' %}
<span class="badge success">Last sync OK</span>
{% elif status.last_sync_status == 'error' %}
<span class="badge warn">Last sync error</span>
{% else %}
<span class="badge">Idle</span>
{% endif %}
{% endif %}
<span style="margin-left:8px;">Last Sync: {{ status.last_sync_at or 'never' }}</span>
<span style="margin-left:8px;">Items: {{ status.last_sync_count }}</span>
{% if status.last_sync_error %}
<div class="muted">Error: {{ status.last_sync_error }}</div>
{% endif %}
{% if status.auto_process %}
<div class="muted">Auto process enabled (every {{ status.interval }}m)</div>
{% endif %}
</div>
{% endif %}
</div>
</div>
<div class="card table-wrap">
<table>
<thead>
<tr>
<th>ID</th>
<th>Subject</th>
<th>AI Summary</th>
<th>Account</th>
<th>Msgs</th>
<th>Requires Reply</th>
<th>Updated</th>
</tr>
</thead>
<tbody>
{% for t in threads %}
<tr>
<td><a href="/thread/{{ t.id }}">{{ t.id }}</a></td>
<td>{{ t.subject }}</td>
<td class="muted">{{ t.ai_summary or '' }}</td>
<td><span class="badge">{{ t.account_email }}</span></td>
<td><span class="badge brand">{{ t.messages|length }}</span></td>
<td>
{% if t.requires_reply %}
<span class="badge warn">Needs reply</span>
{% else %}
<span class="badge success">Up to date</span>
{% endif %}
</td>
<td class="muted">{{ t.updated_at }}</td>
</tr>
{% else %}
<tr><td colspan="6">No threads yet</td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}