From 9f19b98ffed3b137859dd835286c94cf3afd55f1 Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Wed, 17 Oct 2018 16:17:11 -0400 Subject: [PATCH] Ensure there are spaces on emails sent to multiple lists. Author: Andreas Karlsson --- django/archives/mailarchives/templates/_message.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/django/archives/mailarchives/templates/_message.html b/django/archives/mailarchives/templates/_message.html index 3cb39ec..0884a5a 100644 --- a/django/archives/mailarchives/templates/_message.html +++ b/django/archives/mailarchives/templates/_message.html @@ -49,7 +49,11 @@ {% if lists %} Lists: - {%for l in lists %}{{l.listname}}{%endfor%} + + {%for l in lists %} + {{l.listname}} + {%endfor%} + {% endif %} -- 2.39.5