Guest User

Untitled

a guest
Apr 26th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. @method_decorator(login_required, name='dispatch')
  2. class UserUpdateView(UpdateView):
  3. model = User
  4. fields = ('first_name', 'last_name', 'email', )
  5. template_name = 'my_account.html'
  6. success_url = reverse_lazy('my_account')
  7.  
  8. def get_object(self):
  9. return self.request.user
Add Comment
Please, Sign In to add comment