diff --git a/src/postorius/templates/postorius/lists/index.html b/src/postorius/templates/postorius/lists/index.html index 1590838..f157d9e 100644 --- a/src/postorius/templates/postorius/lists/index.html +++ b/src/postorius/templates/postorius/lists/index.html @@ -23,7 +23,7 @@ {% trans 'List name' %} - {% trans 'List address' %} + {% trans 'Post address' %} {% trans 'Description' %} @@ -31,7 +31,7 @@ {% for list in lists %} - {{ list.display_name }} + {{ list.display_name }}{% if not list.settings.advertised %} (private*){% endif %} {{ list.fqdn_listname }} {{ list.settings.description }} @@ -40,9 +40,14 @@ + {% if user.is_superuser %} + * Private lists can only be seen by admins. + {% endif %} + {% else %}

There are currently no mailing lists.

{% endif %} + {% endblock main %}