diff --git a/wizard/urls.py b/wizard/urls.py index b3abc44fd175239192b51f2d2ef0004308b058a9..4b903188c23f86ea200d2dded917e737d22186f0 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,9 +1,9 @@ -from django.conf.urls import url +from django.urls import path from backend.mixins import VisitorTemplateView from . import views urlpatterns = [ - url(r'^$', VisitorTemplateView.as_view(template_name="wizard/home.html"), name="wizard_home"), - url(r'^advocate$', views.Advocate.as_view(), name="wizard_advocate"), - url(r'^process/(?P[^/]+)$', views.NewProcess.as_view(), name="wizard_newprocess"), + path("", VisitorTemplateView.as_view(template_name="wizard/home.html"), name="wizard_home"), + path("advocate/", views.Advocate.as_view(), name="wizard_advocate"), + path("process//", views.NewProcess.as_view(), name="wizard_newprocess"), ]