pretix-servicefees/pretix_servicefees/urls.py

9 lines
207 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'),
]