1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2024-11-21 20:21:03 +00:00

replace re_path() with include() and path()

This commit is contained in:
Franzi 2024-10-31 21:22:35 +01:00
parent 9ebcde7ab1
commit 6a3b1b309e
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -1,5 +1,4 @@
from django.urls import re_path
from pretalx.event.models.event import SLUG_REGEX
from django.urls import include, path
from .views.event_info import BroadcastToolsEventInfoView
from .views.orga import BroadcastToolsOrgaView
@ -8,38 +7,45 @@ from .views.schedule import BroadcastToolsScheduleView
from .views.static_html import BroadcastToolsLowerThirdsView, BroadcastToolsRoomInfoView
urlpatterns = [
re_path(
rf"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/event.json$",
path(
"<slug:event>/p/broadcast-tools/",
include(
[
path(
"event.json",
BroadcastToolsEventInfoView.as_view(),
name="event_info",
),
re_path(
f"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/schedule.json$",
path(
"schedule.json",
BroadcastToolsScheduleView.as_view(),
name="schedule",
),
re_path(
f"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/lower-thirds/$",
path(
"lower-thirds/",
BroadcastToolsLowerThirdsView.as_view(),
name="lowerthirds",
),
re_path(
f"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/feedback-qr/(?P<talk>[0-9]+).svg$",
path(
"feedback-qr/<talk>.svg",
BroadcastToolsFeedbackQrCodeSvg.as_view(),
name="feedback_qr_id",
),
re_path(
f"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/public-qr/(?P<talk>[0-9]+).svg$",
path(
"public-qr/<talk>.svg",
BroadcastToolsPublicQrCodeSvg.as_view(),
name="public_qr_id",
),
re_path(
f"^(?P<event>{SLUG_REGEX})/p/broadcast-tools/room-info/$",
path(
"room-info/",
BroadcastToolsRoomInfoView.as_view(),
name="room_info",
),
re_path(
f"^orga/event/(?P<event>{SLUG_REGEX})/settings/p/broadcast-tools/$",
],
),
),
path(
"orga/event/<slug:event>/settings/p/broadcast-tools/",
BroadcastToolsOrgaView.as_view(),
name="orga",
),