mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-13 02:34:21 +01:00
8 lines
223 B
Python
8 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'),
|
|
]
|