mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-24 00:51:02 +00:00
make the linter happy
Und täglich grüßt das Murmeltier ...
This commit is contained in:
parent
3f7649b09a
commit
46be2a02b5
3 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
Pretalx: Broadcast Tools (and more)
|
Pretalx: Broadcast Tools (and more)
|
||||||
==========================
|
===================================
|
||||||
|
|
||||||
This is a plugin for `pretalx`_.
|
This is a plugin for `pretalx`_.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
from django.forms import BooleanField, CharField, Textarea, ChoiceField
|
from django.forms import BooleanField, CharField, ChoiceField, Textarea
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
from hierarkey.forms import HierarkeyForm
|
from hierarkey.forms import HierarkeyForm
|
||||||
from i18nfield.forms import I18nFormField, I18nFormMixin, I18nTextInput
|
from i18nfield.forms import I18nFormField, I18nFormMixin, I18nTextInput
|
||||||
|
|
|
@ -75,7 +75,8 @@ class BroadcastToolsEventInfoView(View):
|
||||||
self.request.event.settings.broadcast_tools_lower_thirds_no_talk_info
|
self.request.event.settings.broadcast_tools_lower_thirds_no_talk_info
|
||||||
),
|
),
|
||||||
"room-info": {
|
"room-info": {
|
||||||
"lower_info": self.request.event.settings.broadcast_tools_room_info_lower_content or '',
|
"lower_info": self.request.event.settings.broadcast_tools_room_info_lower_content
|
||||||
|
or "",
|
||||||
},
|
},
|
||||||
"slug": self.request.event.slug,
|
"slug": self.request.event.slug,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue