Skip to content
GitLab
Explore
Sign in
Commits on Source (1)
Linebreaks are rendered as <<BR>> in the wiki
· e5b76b7c
ynerant
authored
Sep 07, 2020
e5b76b7c
Hide whitespace changes
Inline
Side-by-side
management/commands/refresh_activities.py
View file @
e5b76b7c
...
...
@@ -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
,
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
,
description
=
act
.
description
.
replace
(
"
\r
"
,
""
).
replace
(
"
\n
"
,
"
<<BR>>
"
)
,
club
=
act
.
organizer
.
name
,
location
=
act
.
location
,
)
...
...