20 lines
440 B
Python
20 lines
440 B
Python
from django.urls import include, path
|
|
|
|
from .views import MusicrateSettingsView, QRCodeView
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"orga/event/<slug:event>/settings/p/pretalx_musicrate/",
|
|
MusicrateSettingsView.as_view(),
|
|
name="settings",
|
|
),
|
|
path(
|
|
"<slug:event>/p/pretalx_musicrate/",
|
|
include(
|
|
[
|
|
path("", QRCodeView.as_view(), name="qrcode"),
|
|
]
|
|
),
|
|
),
|
|
]
|