diff options
Diffstat (limited to 'apps/accounts/views.py')
-rw-r--r-- | apps/accounts/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/accounts/views.py b/apps/accounts/views.py index d463522..75bb933 100644 --- a/apps/accounts/views.py +++ b/apps/accounts/views.py @@ -18,7 +18,7 @@ class UpdateViewWithUser(UpdateView): class ProfileView(UpdateViewWithUser): model = UserProfile form_class = ProfileForm - template_name = "accounts/profile.html" + template_name = "accounts/change-settings.html" def get_object(self): return self.request.user.profile |