pretalx-plugin-broadcast-tools/pretalx_lower_thirds/apps.py

22 lines
614 B
Python
Raw Normal View History

2021-11-20 08:05:08 +00:00
from django.apps import AppConfig
from django.utils.translation import gettext_lazy
class PluginApp(AppConfig):
name = "pretalx_lower_thirds"
verbose_name = "Lower Thirds"
class PretalxPluginMeta:
name = gettext_lazy("Lower Thirds")
author = "kunsi"
2021-11-21 07:06:35 +00:00
description = gettext_lazy(
"Creates lower thirds from your current schedule. Will show "
"speaker names and talk title using the configured track and "
"event colours."
)
2021-11-20 08:05:08 +00:00
visible = True
version = "0.0.0"
def ready(self):
from . import signals # NOQA