how did this survive for so long!

This commit is contained in:
Thomas Steen Rasmussen 2020-07-30 20:45:35 +02:00
parent 3cbd4f4e87
commit 51c95ddc9d
1 changed files with 1 additions and 1 deletions

View File

@ -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"),
]