pretix-servicefees/pretix_servicefees/urls.py

9 lines
223 B
Python
Raw Permalink Normal View History

2018-02-27 23:12:01 +01:00
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'),
]