pretix-servicefees/pretix_servicefees/urls.py
2022-12-17 18:18:51 +01:00

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