{% extends postorius_base_template %} {% load url from future %} {% load i18n %} {% block subtitle %} {% trans "List Index" as page_title %}{{ page_title }} {% endblock %} {% block main %}

{% trans "Mailing Lists" %}

{% if user.is_superuser %}

{% if domain_count < 2 %} {% trans "Create New Domain" %} {% else %} {% trans "Create New List" %} {% endif %}

{% endif %} {% if lists|length > 0 %} {% for list in lists %} {% endfor %}
{% trans 'List name' %} {% trans 'Post address' %} {% trans 'Description' %}
{{ list.display_name }}{% if not list.settings.advertised %} (private*){% endif %} {{ list.fqdn_listname }} {{ list.settings.description }}
{% if user.is_superuser %} * Private lists can only be seen by admins. {% endif %} {% else %}

There are currently no mailing lists.

{% endif %} {% endblock main %}