Re: failing to pass model objects to template for some reason....

2011-05-21 Thread Chris Seberino
On May 21, 5:22 am, Duane Griffin wrote: > Is the messaging framework configured (note that it is by default)? Wow. I thanks so much! I never would have caught this! I renamed Message to Annoucement and now it works! cs -- You received this message because you are subscribed to the Google G

Re: failing to pass model objects to template for some reason....

2011-05-21 Thread Duane Griffin
On 21 May 2011 05:51, Chris Seberino wrote: > I have a model class called Message with an attribute called text. > > ** When I pass a list of these objects called messages to my template, > it doesn't show up. > > ** When I instead create this derivative called fred, that *does* > work... >      

Re: failing to pass model objects to template for some reason....

2011-05-21 Thread Gath
Chris, Try to print out the entire list object in the template, see if it has anything i.e. {{ messages }} This should tell you if data is been transfered from your view to the template. Gath On May 21, 7:51 am, Chris Seberino wrote: > I have a model class called Message with an attribute cal