diff --git a/registration/views.py b/registration/views.py index 3187fb3..df7fb8b 100644 --- a/registration/views.py +++ b/registration/views.py @@ -263,6 +263,7 @@ class UserUpdateView(UserMixin, UpdateView): Update the detail about a user and its registration. """ model = User + context_object_name = "user_object" form_class = UserForm template_name = "registration/update_user.html"