On Tue, Jun 14, 2011 at 11:01 AM, Kyle Latham <kly.lat...@gmail.com> wrote: >>>> Poll.objects.all() > [<Poll: Poll object>]
What do you get when you try: >>> p = Poll.objects.all()[0] >>> p >>> type(p) >>> dir(p) Try this too: >>> p = Poll.objects.all() >>> for x in p: . . . print x (indent this line four spaces, hit return key once) . . . (hit return key again) Does any of that help? Good luck! Cheers, Micky -- 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 django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.