pretalx-musicrate/pretalx_musicrate/urls.py

20 lines
440 B
Python
Raw Normal View History

2023-12-15 02:48:31 +01:00
from django.urls import include, path
2023-12-13 23:58:00 +01:00
2023-12-15 02:48:31 +01:00
from .views import MusicrateSettingsView, QRCodeView
2023-12-13 23:58:00 +01:00
urlpatterns = [
2023-12-15 02:48:31 +01:00
path(
"orga/event/<slug:event>/settings/p/pretalx_musicrate/",
2023-12-14 02:52:59 +01:00
MusicrateSettingsView.as_view(),
2023-12-13 23:58:00 +01:00
name="settings",
),
2023-12-15 02:48:31 +01:00
path(
"<slug:event>/p/pretalx_musicrate/",
include(
[
path("", QRCodeView.as_view(), name="qrcode"),
]
),
),
2023-12-13 23:58:00 +01:00
]