From 51c95ddc9dfb8527df8849c027706815f960528e Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Thu, 30 Jul 2020 20:45:35 +0200 Subject: [PATCH] how did this survive for so long! --- src/profiles/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/profiles/urls.py b/src/profiles/urls.py index b873bae9..f658d629 100644 --- a/src/profiles/urls.py +++ b/src/profiles/urls.py @@ -5,5 +5,5 @@ from .views import ProfileDetail, ProfileUpdate app_name = "profiles" urlpatterns = [ path("", ProfileDetail.as_view(), name="detail"), - path("edit", ProfileUpdate.as_view(), name="update"), + path("edit/", ProfileUpdate.as_view(), name="update"), ]