Improve user creation

This commit is contained in:
Ross
2023-02-20 11:43:56 +00:00
parent 0eacd83446
commit 81d4dc72cc
7 changed files with 191 additions and 95 deletions
+5
View File
@@ -74,6 +74,11 @@ urlpatterns = [
views.UpdateUserView.as_view(),
name="account_update",
),
path(
"accounts/delete/<int:pk>/",
views.DeleteUserView.as_view(),
name="account_delete",
),
path(
"accounts/update_profile/<str:slug>/",
views.UpdateUserProfileView.as_view(),