{% 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 %} {% with settings=list.settings %} {% endwith %} {% endfor %}
{% trans 'List name' %} {% trans 'Post address' %} {% trans 'Description' %}
{{ list.display_name }}{% if not settings.advertised %} ({% trans 'unadvertised' %}*){% endif %} {{ list.fqdn_listname }} {{ settings.description }}
{% if user.is_superuser %} * {% trans 'Only admins see unadvertised lists in the list index.' %} {% endif %} {% include 'postorius/_pagination.html' with page=lists %} {% else %}

There are currently no mailing lists.

{% endif %} {% endblock main %}