profile = UserProfile.objects.get(....)

what i try to do - is to get profile for the currently logged in user. What should i put in the brackets?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Assuming you are following the pattern described here:

http://docs.djangoproject.com/en/dev/topics/auth/#storing-additional-information-about-users

You should be able to use the following:

def my_view(request):
    user = request.user
    if not isinstance(user, AnonymousUser):
        profile = user.get_profile()
        # do something with the profile here
    else:
        # handle anonymous users
link|improve this answer
feedback

Comon guys, no need to be so harsh... Some people actually don't know that the grey outline checkmark is what you're supposed to press.

UserProfile.objects.get(user=request.user) 

But if it's a OneToOne field, you should be able to do request.user.userprofile http://docs.djangoproject.com/en/dev/topics/db/queries/#one-to-one-relationships

link|improve this answer
Thank you Yuji, it was exactly it. Sorry, im still a very beginner ^^ – Yulia Feb 22 '11 at 17:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.