from django.urls import include, path from .views import JoinView, MusicrateSettingsView, PresenterView, QRCodeView urlpatterns = [ path( "orga/event//settings/p/pretalx_musicrate/", MusicrateSettingsView.as_view(), name="settings", ), path( "/p/pretalx_musicrate/", include( [ path("", QRCodeView.as_view(), name="qrcode"), path("present//", PresenterView.as_view(), name="present"), path("/", JoinView.as_view(), name="join"), ] ), ), ]