mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-10-31 23:05:53 +00:00
10 lines
279 B
Python
10 lines
279 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"
|