Skip to content
Snippets Groups Projects
Commit f757302b authored by Felix Schäfer's avatar Felix Schäfer :construction_worker:
Browse files

Django 4 compatibility

parent aad9ef01
No related branches found
No related tags found
No related merge requests found
from django.conf.urls import url from django.urls import path
from .views import PublicRegistrationsSettingsView from .views import PublicRegistrationsSettingsView
urlpatterns = [ urlpatterns = [
url( path(
r"^control/event/(?P<organizer>[^/]+)/(?P<event>[^/]+)/public_registrations/$", "control/event/<str:organizer>/<str:event>/public_registrations/",
PublicRegistrationsSettingsView.as_view(), PublicRegistrationsSettingsView.as_view(),
name="settings", name="settings",
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment