pretix-servicefees/pretix_servicefees/urls.py

9 lines
207 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 = [
2022-12-17 18:18:51 +01:00
path('control/event/<str:organizer>/<str:event>/settings/servicefees/',
2018-02-27 23:12:01 +01:00
SettingsView.as_view(), name='settings'),
]