{% extends postorius_base_template %} {% load i18n %} {% block subtitle %} {% trans 'List Index' %} {% endblock %} {% block main %} {% if user.is_superuser %}

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

{% 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 %} ({% trans 'unadvertised' %}*){% endif %} {{ list.fqdn_listname }} {{ list.settings.description }}
{% if user.is_superuser %} * {% trans 'Only admins see unadvertised lists in the list index.' %} {% endif %} {% include 'postorius/lib/pagination.html' with page=lists %} {% else %}

{% trans 'There are currently no mailing lists.' %}

{% endif %} {% endblock main %}