pretix-servicefees/pretix_servicefees/urls.py

12 lines
230 B
Python
Raw Normal View History

2022-12-17 18:18:51 +01:00
from django.urls import path
2018-02-27 23:12:01 +01:00
from .views import SettingsView
urlpatterns = [
2024-05-31 16:41:47 +02:00
path(
"control/event/<str:organizer>/<str:event>/settings/servicefees/",
SettingsView.as_view(),
name="settings",
),
2018-02-27 23:12:01 +01:00
]