mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-01 03:25:49 +00:00
26 lines
925 B
Python
26 lines
925 B
Python
from django.forms import ChoiceField, RadioSelect
|
|
from django.utils.translation import gettext_lazy as _
|
|
from hierarkey.forms import HierarkeyForm
|
|
from i18nfield.forms import I18nFormField, I18nFormMixin, I18nTextInput
|
|
|
|
|
|
class BroadcastToolsSettingsForm(I18nFormMixin, HierarkeyForm):
|
|
lower_thirds_theme = ChoiceField(
|
|
choices=(("default", "default"), ("rc3-2021", "rc3-2021")),
|
|
label=_("Theme"),
|
|
widget=RadioSelect,
|
|
)
|
|
lower_thirds_no_talk_info = I18nFormField(
|
|
help_text=_(
|
|
"Will be shown as talk title if there's currently no talk running."
|
|
),
|
|
label=_('"no talk running" information'),
|
|
widget=I18nTextInput,
|
|
required=True,
|
|
)
|
|
lower_thirds_info_string = I18nFormField(
|
|
help_text=_("Will only be shown if there's a talk running."),
|
|
label=_("info line"),
|
|
required=False,
|
|
widget=I18nTextInput,
|
|
)
|