pretix-servicefees/pretix_servicefees/urls.py

12 lines
230 B
Python

from django.urls import path
from .views import SettingsView
urlpatterns = [
path(
"control/event/<str:organizer>/<str:event>/settings/servicefees/",
SettingsView.as_view(),
name="settings",
),
]