Firstly, the statement "user = User.objects.get(id=request.user.id)" is redundant -- you could directly use request.user instead of that query with the same effect.
As far as the actual problem is concerned, your Queryset is returning multiple rows because request.user.id probably resolves to None (in that case the query will match all User records). This in turn implies that request.user is not good. Have a look at: http://www.djangoproject.com/documentation/authentication/#authentication-in-web-requests That will tell you what you need to setup in your project in order for Django to populate request.user for you. Beware also that request.user may not always point to a logged in user. Always check this with the is_anonymous() call or other permission method calls before you use the user instance for anything serious. Good luck! -Rajesh --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users -~----------~----~----~----~------~----~------~--~---