Think I now have this working with the following:
def get_queryset(self):
self.kwargs['pk'] = self.kwargs.get('pk', self.request.user.id)
UserModel = get_user_model()
profile = UserModel.objects.filter(pk=self.kwargs['pk'])
return profile
Thanks for your replies and assistance.
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/SQ0bBUgoZq0J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.