fix: Uses frontpage text instead of description
This commit is contained in:
parent
e25ebd2086
commit
22f9b6b90b
1 changed files with 1 additions and 1 deletions
|
|
@ -376,7 +376,7 @@ class CongressScheduleJSONView(views.APIView):
|
|||
"track": "Hackertours",
|
||||
"type": "Tour",
|
||||
"language": str(lang or "de, en"),
|
||||
"abstract": se.description.localize(ev.settings.locale) if hasattr(se.description, 'localize') else str(se.description) or "",
|
||||
"abstract": se.frontpage_text.localize(ev.settings.locale) if hasattr(se.frontpage_text, 'localize') else str(se.frontpage_text) if se.frontpage_text else "",
|
||||
"persons": [],
|
||||
"links": [
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue