{% extends "base.html" %} {% block title %}Dashboard - Email Server Management{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
Domains

{{ domain_count }}

Active domains
Users

{{ user_count }}

Authenticated users
DKIM Keys

{{ dkim_count }}

Active DKIM keys
Status
Online
Server running
Recent Email Activity
View All
{% if recent_emails %}
{% for email in recent_emails %} {% endfor %}
Time From To Status DKIM
{{ email.created_at.strftime('%H:%M:%S') }} {{ email.mail_from }} {{ email.to_address }} {% if email.status == 'relayed' %} Sent {% else %} Failed {% endif %} {% if email.dkim_signed %} {% else %} {% endif %}
{% else %}

No email activity yet

{% endif %}
Recent Auth Activity
View All
{% if recent_auths %}
{% for auth in recent_auths %}
{% if auth.success %} {% else %} {% endif %} {{ auth.auth_type|title }}
{{ auth.identifier }}
{{ auth.created_at.strftime('%H:%M:%S') }}
{{ auth.ip_address }}
{% endfor %}
{% else %}

No authentication activity yet

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}