{% extends "base.html" %} {% block title %}Dashboard — IMAP Mail Filter{% endblock %} {% block content %}

Dashboard

{% if accounts %}
{% for acc in accounts %}

{{ acc.name }}

{{ acc.username }}@{{ acc.imap_host }}

Status: {% if acc.enabled %} Aktiv {% else %} Deaktiviert {% endif %}

Polling: alle {{ acc.poll_interval_seconds }}s

Letzter Poll: {{ acc.last_poll_at or "Noch nie" }}

Filterregeln: {{ acc.filter_rule_count }}

{% endfor %}
{% else %}

Noch keine Konten eingerichtet. Konto hinzufügen

{% endif %} {% endblock %} {% block scripts %} {% endblock %}