diff --git a/src/postorius/templates/postorius/lists/index.html b/src/postorius/templates/postorius/lists/index.html index 052ce37..1590838 100644 --- a/src/postorius/templates/postorius/lists/index.html +++ b/src/postorius/templates/postorius/lists/index.html @@ -17,24 +17,32 @@

{% endif %} - - - - - - - - - - {% for list in lists %} - - - - - - {% endfor %} - -
{% trans 'List name' %}{% trans 'List address' %}{% trans 'Description' %}
- {{ list.display_name }} - {{ list.fqdn_listname }}{{ list.settings.description }}
+ {% if lists|length > 0 %} + + + + + + + + + + + {% for list in lists %} + + + + + + {% endfor %} + +
{% trans 'List name' %}{% trans 'List address' %}{% trans 'Description' %}
+ {{ list.display_name }} + {{ list.fqdn_listname }}{{ list.settings.description }}
+ + {% else %} + +

There are currently no mailing lists.

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