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