diff --git a/src/postorius/templates/postorius/user/subscriptions.html b/src/postorius/templates/postorius/user/subscriptions.html index 74a3a0b..3c9aaac 100644 --- a/src/postorius/templates/postorius/user/subscriptions.html +++ b/src/postorius/templates/postorius/user/subscriptions.html @@ -10,27 +10,29 @@ {% block main %} {% user_nav 'subscriptions' 'List Subscriptions' %} - -

{% trans 'You are subscribed to the following mailing lists:' %}

-
- - - - - - - - - - {% for subscription in memberships %} + {% if memberships %} +

{% trans 'You are subscribed to the following mailing lists:' %}

+
+
{% trans 'List Name' %}{% trans 'Subscription Address' %}{% trans 'Delivery Mode' %}
+ - - - + + + - {% endfor %} - -
{{ subscription.list_id }}{{ subscription.address }}{{ subscription.preferences.delivery_mode }}{% trans 'List Name' %}{% trans 'Subscription Address' %}{% trans 'Delivery Mode' %}
-
- + + + {% for subscription in memberships %} + + {{ subscription.list_id }} + {{ subscription.address }} + {{ subscription.preferences.delivery_mode }} + + {% endfor %} + + + + {% else %} +

{% trans 'You are not yet subscribed to any lists.' %}

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