mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-22 06:21:01 +00:00
Don't display "None" when no infoline is configured
This commit is contained in:
parent
92ddff646c
commit
2f312b3509
1 changed files with 2 additions and 3 deletions
|
@ -50,6 +50,7 @@ class ScheduleView(EventPermissionRequired, ScheduleMixin, TemplateView):
|
|||
schedule=self.schedule,
|
||||
)
|
||||
tz = pytz.timezone(schedule.event.timezone)
|
||||
infoline = str(schedule.event.settings.infoline or "")
|
||||
return JsonResponse(
|
||||
{
|
||||
"conference": {
|
||||
|
@ -88,9 +89,7 @@ class ScheduleView(EventPermissionRequired, ScheduleMixin, TemplateView):
|
|||
if talk.submission.track
|
||||
else None,
|
||||
"room": str(room["name"]),
|
||||
"infoline": str(
|
||||
schedule.event.settings.lower_thirds_info_string
|
||||
).format(
|
||||
"infoline": infoline.format(
|
||||
EVENT_SLUG=str(schedule.event.slug),
|
||||
TALK_SLUG=talk.frab_slug,
|
||||
CODE=talk.submission.code,
|
||||
|
|
Loading…
Reference in a new issue