2023-12-13 23:58:00 +01:00
|
|
|
from django.urls import re_path
|
|
|
|
from pretalx.event.models.event import SLUG_REGEX
|
|
|
|
|
2023-12-14 02:52:59 +01:00
|
|
|
from .views import MusicrateSettingsView
|
2023-12-13 23:58:00 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
re_path(
|
|
|
|
rf"^orga/event/(?P<event>{SLUG_REGEX})/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",
|
|
|
|
),
|
|
|
|
]
|