mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-15 01:15:50 +00:00
13 lines
392 B
Python
13 lines
392 B
Python
from django.views.generic.base import TemplateView
|
|
|
|
|
|
class BroadcastToolsLowerThirdsView(TemplateView):
|
|
template_name = "pretalx_broadcast_tools/lower_thirds.html"
|
|
|
|
|
|
class BroadcastToolsRoomInfoView(TemplateView):
|
|
template_name = "pretalx_broadcast_tools/room_info.html"
|
|
|
|
|
|
class BroadcastToolsRoomTimerView(TemplateView):
|
|
template_name = "pretalx_broadcast_tools/room_timer.html"
|