{% extends "base.html" %} {% block title %}{{ _('Overview') }}{% endblock %} {% block content %}

{{ _('Overview') }}

{%- include "flash.html" %} {# Show flash messages #}

{{ _('Welcome to CastMail2List! Use the navigation above to manage your mailing lists and their subscribers.') }}

{{ _('Status') }}

{{ _('Incoming Emails') }}

{{ _('Total') }}: {{ stats.email_in.count }}

{{ _('Last 7 days') }}: {{ stats.email_in.days_7 | length }}

{{ _('View all') }}

{{ _('Outgoing Emails') }}

{{ _('Total') }}: {{ stats.email_out.count }}

{{ _('Last 7 days') }}: {{ stats.email_out.days_7 | length }}

{{ _('View all') }}

{{ _('Errors') }}

{{ _('Last 7 days') }}: {{ stats.errors.days_7|length }}

{{ _('View all') }}

{{ _('Warnings') }}

{{ _('Last 7 days') }}: {{ stats.warnings.days_7|length }}

{{ _('View all') }}

{{ _('Bounces') }}

{{ _('Last 7 days') }}: {{ stats.bounces.days_7 | length }}

{{ _('View all') }}

{{ _('Mailing Lists') }}

{{ _('Total') }}: {{ stats.lists.count.total }}

{{ _('Active') }}: {{ stats.lists.count.active }}

{{ _('Deactivated') }}: {{ stats.lists.count.deactivated }}

{{ _('View all') }}

{{ _('Subscribers') }}

{{ _('Total') }}: {{ stats.subscribers.count }}

{{ _('View all') }}

{% endblock %}