{% if accounts.is_empty() %}

No accounts connected

Connect Gmail, Outlook, or other accounts to enable LLM search and file operations.

{% else %} {% for account in accounts %}
{{ account.email_count }}
Emails
{{ account.file_count }}
Files
{{ account.event_count }}
Events
{% if account.last_sync_at.is_some() %} Last sync: {{ account.last_sync_at.as_ref().unwrap() }} {% endif %}
{% endfor %} {% endif %}