mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-01 05:15:50 +00:00
21 lines
657 B
Python
21 lines
657 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy
|
|
|
|
|
|
class PluginApp(AppConfig):
|
|
name = "pretalx_broadcast_tools"
|
|
verbose_name = "Broadcasting Tools"
|
|
|
|
class PretalxPluginMeta:
|
|
name = gettext_lazy("Broadcasting Tools")
|
|
author = "kunsi"
|
|
description = gettext_lazy(
|
|
"Some tools which can be used for supporting a broadcasting "
|
|
"software, for example a 'lower third' page which can be "
|
|
"embedded into your broadcasting software"
|
|
)
|
|
visible = True
|
|
version = "1.1.0-beta1"
|
|
|
|
def ready(self):
|
|
from . import signals # NOQA
|