37
I need to override the get_object()
method on the update view and do not need to override form_valid. The custom get_object()
method is:
def get_object(self, queryset=None):
return self.request.user
6
I know this is an old post but something stood out to me and this comment is info for newcomers.
The get call for self.object will work but it’s not matching the actual fields to get username as it’s supplying the user instance:
self.object = User.objects.get(username=self.request.user)
You should match the username argument with the instance username argument:
self.object = User.objects.get(username=self.request.user.username)
Better still, use the pk (id):
self.object = User.objects.get(pk=self.request.user.pk)
There could be a neater way of doing this, so I’m open to suggestions.
- [Django]-How can I trigger a 500 error in Django?
- [Django]-Installing PIL with JPEG support on Mac OS X
- [Django]-Is there a way to loop over two lists simultaneously in django?
Source:stackexchange.com