mirror of
https://github.com/pretix/pretix-servicefees.git
synced 2024-11-15 03:14:21 +01:00
11 lines
230 B
Python
11 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",
|
|
),
|
|
]
|