1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-05-09 00:58:20 +00:00
pretalx-plugin-broadcast-tools/pretalx_lower_thirds/forms.py

18 lines
571 B
Python

from django import forms
from django.utils.translation import gettext_lazy as _
from hierarkey.forms import HierarkeyForm
class LowerThirdsSettingsForm(HierarkeyForm):
lower_thirds_no_talk_info = forms.CharField(
help_text='Will be shown as talk title if there\'s currently no talk running.',
initial = 'Sorry, there\'s currently no talk running',
label='"no talk running" information',
required=True,
)
lower_thirds_info_string = forms.CharField(
initial='',
label='info line',
required=False,
)