12 lines
256 B
Python
12 lines
256 B
Python
from django.urls import re_path
|
|
|
|
from .views import SettingsView
|
|
|
|
urlpatterns = [
|
|
re_path(
|
|
r"^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/pretix_digital_items/settings",
|
|
SettingsView.as_view(),
|
|
name="settings",
|
|
),
|
|
]
|