On Wed, 2009-02-04 at 18:02 -0800, CALdan wrote:
> Hi,
> 
> I'm in the process of learning django by creating a simple application
> for use at work, I'm using the djangobook's tutorials as guidlines for
> my own app.  As far as I can tell, everything below is correct however
> when django loads the page in the browser there is no data from within
> the FOR loop.  Any assistance would be most appreciated!

Re-read the documentation for the object_list generic view: The list of
objects will be in a variable called object_list, not line_list.

As soon as you notice looping over something that appears to contain no
data you should (a) check that there really should be data there (i.e.
that Line.objects.all() contains something) and (b) check for a spelling
error in the variable you're looping over. Those two together constitute
a huge portion of the problems people see in this area.

Regards,
Malcolm



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

Reply via email to