Re: ManyToMany "Cannot resolve keyword"

2006-10-28 Thread NakedHTML
Thanks to everyone for your help and support! As it turns our, Malcoms advice of: >Then start removing code from your models until things start working again. ...was what I needed. It gave me a chance to wade through the models and find the offending code. Looks like it was line 84 of the ori

Re: ManyToMany "Cannot resolve keyword"

2006-10-28 Thread samulih
Jay Parlar wrote: > On 10/28/06, NakedHTML <[EMAIL PROTECTED]> wrote: > > > > Okay, I trimmed things down a bit and put the models into a new > > project. Models -> http://paste.e-scribe.com/2425/ > > > > I'm trying to access the reporter (or reporters) of the story in the > > template using -> ht

Re: ManyToMany "Cannot resolve keyword"

2006-10-28 Thread Jay Parlar
On 10/28/06, NakedHTML <[EMAIL PROTECTED]> wrote: > > Okay, I trimmed things down a bit and put the models into a new > project. Models -> http://paste.e-scribe.com/2425/ > > I'm trying to access the reporter (or reporters) of the story in the > template using -> http://paste.e-scribe.com/2424/ >

Re: ManyToMany "Cannot resolve keyword"

2006-10-28 Thread NakedHTML
Okay, I trimmed things down a bit and put the models into a new project. Models -> http://paste.e-scribe.com/2425/ I'm trying to access the reporter (or reporters) of the story in the template using -> http://paste.e-scribe.com/2424/ Same as before, this randomly works and errors out with -> htt

Re: ManyToMany "Cannot resolve keyword"

2006-10-27 Thread NakedHTML
Malcolm Tredinnick wrote: > We may need a bit more information there. It sounds like (from the title > of this email, which isn't mentioned anywhere else here) like one of the > fields you are expecting to be non-null is empty and so the related > instance doesn't exist and you can't query agains

Re: ManyToMany "Cannot resolve keyword"

2006-10-27 Thread Malcolm Tredinnick
On Sat, 2006-10-28 at 01:55 +, NakedHTML wrote: > I've been looking through the archives here and goggeling around trying > to resolve what I am sure is a simple problem. > > I am trying to do the following: > > 1) Display an article > 2) Display the reporter (many to many field) > 3) Displa

ManyToMany "Cannot resolve keyword"

2006-10-27 Thread NakedHTML
I've been looking through the archives here and goggeling around trying to resolve what I am sure is a simple problem. I am trying to do the following: 1) Display an article 2) Display the reporter (many to many field) 3) Display related images (many to many field) The model for the complete ap