A queryset is kind of like a list, you can slice it, access by index,
or iterate through it.  I'm not quite sure what you are trying to do,
but to access the individual user objects you have to fetch them from
the queryset somehow:

users = User.objects.all()

by index:
print users[0].user
print users[1].user

by loop:
for user in users:
    print user.user




--~--~---------~--~----~------------~-------~--~----~
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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to