from django.urls import re_path from pretalx.event.models.event import SLUG_REGEX from .views import MusicrateSettings urlpatterns = [ re_path( rf"^orga/event/(?P{SLUG_REGEX})/settings/p/pretalx_musicrate/$", MusicrateSettings.as_view(), name="settings", ), ]