Add space before line breaks in Wiki export of activities

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-12-13 17:30:02 +01:00
parent 7a022b9407
commit 86bc2d2698
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ class Command(BaseCommand):
title=act.name,
start=timezone.localtime(act.date_start).strftime("%Y-%m-%d %H:%M"),
end=timezone.localtime(act.date_end).strftime("%Y-%m-%d %H:%M"),
description=act.description.replace("\r", "").replace("\n", "<<BR>>"),
description=act.description.replace("\r", "").replace("\n", " <<BR>>"),
club=act.organizer.name,
location=act.location,
)
@ -108,7 +108,7 @@ class Command(BaseCommand):
return "|| {start} || {title} || {description} || {club} || {location} ||".format(
title=act.name,
start=timezone.localtime(act.date_start).strftime("%d/%m/%Y"),
description=act.description.replace("\r", "").replace("\n", "<<BR>>"),
description=act.description.replace("\r", "").replace("\n", " <<BR>>"),
club=act.organizer.name,
location=act.location,
)