I read there:
from django.shortcuts import render_to_response
from mysite.polls.model import Poll
def index(request):
    latest_poll_list = Poll.objects.all()
   &c.

What is 'latest_poll_list'? I assume it is a list, but a list of what?
Records? Can I cycle through that list (for X in latest_poll_list...)
and are the items in the list then again lists that contain the field
data?

--~--~---------~--~----~------------~-------~--~----~
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