mirror of
https://github.com/Kunsi/pretalx-plugin-broadcast-tools
synced 2024-11-22 09:51:01 +00:00
22 lines
575 B
Python
22 lines
575 B
Python
from django.urls import re_path
|
|
from pretalx.event.models.event import SLUG_CHARS
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
f"^(?P<event>[{SLUG_CHARS}]+)/p/lower-thirds/$",
|
|
views.LowerThirdsView.as_view(),
|
|
name="lowerthirds",
|
|
),
|
|
re_path(
|
|
f"^(?P<event>[{SLUG_CHARS}]+)/p/lower-thirds/schedule.json$",
|
|
views.ScheduleView.as_view(),
|
|
name="schedule",
|
|
),
|
|
re_path(
|
|
f"^orga/event/(?P<event>[{SLUG_CHARS}]+)/p/lower-thirds/$",
|
|
views.LowerThirdsOrgaView.as_view(),
|
|
name="orga",
|
|
),
|
|
]
|