mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-10 17:24:21 +01:00
9 lines
223 B
Python
9 lines
223 B
Python
|
from django.conf.urls import url
|
||
|
|
||
|
from .views import SettingsView
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/settings/servicefees/$',
|
||
|
SettingsView.as_view(), name='settings'),
|
||
|
]
|