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

{{ _('Mailing Lists') }}

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

{{ _('Add new List') }} {{ _('See deactivated lists') }}

{% if lists %} {% for list in lists %} {% endfor %}
{{ _('List Name') }} {{ _('List Address') }} {{ _('List Mode') }} {{ _('Actions') }}
{{ list.name }} {{ list.address }} {%- if list.mode == "broadcast" %} {{ _('Broadcast') }} {%- elif list.mode == "group" %} {{ _('Group') }} {%- else %} {{ _('Unknown') }} {%- endif %} {{ _('Subscribers') }} ({{ get_list_subscribers(list)|length }}) {{ _('Edit') }} {{ _('Deactivate') }}
{% else %}

{{ _('No mailing lists configured yet.') }}

{% endif %} {% endblock %}