Re: Access to Many-To-Many intermediary table from django

2008-12-11 Thread Malcolm Tredinnick
On Thu, 2008-12-11 at 09:43 +0100, Elvis Stansvik wrote: > 2008/12/11 Malcolm Tredinnick : > > > > > > On Wed, 2008-12-10 at 06:22 -0800, nucles wrote: > >> Hello, > >> > >> If we create 2 models with many-to-many relationship django creates > >> the intermediary table

Re: Access to Many-To-Many intermediary table from django

2008-12-11 Thread Elvis Stansvik
2008/12/11 Malcolm Tredinnick <[EMAIL PROTECTED]>: > > > On Wed, 2008-12-10 at 06:22 -0800, nucles wrote: >> Hello, >> >> If we create 2 models with many-to-many relationship django creates >> the intermediary table automatically for us. >> How can i use this intermediate table to relate other

Re: Access to Many-To-Many intermediary table from django

2008-12-11 Thread Elvis Stansvik
2008/12/10 nucles <[EMAIL PROTECTED]>: > > Hello, > > If we create 2 models with many-to-many relationship django creates > the intermediary table automatically for us. > How can i use this intermediate table to relate other entities? Can i > access to the primary field of the intermediary table?

Re: Access to Many-To-Many intermediary table from django

2008-12-10 Thread Malcolm Tredinnick
On Wed, 2008-12-10 at 06:22 -0800, nucles wrote: > Hello, > > If we create 2 models with many-to-many relationship django creates > the intermediary table automatically for us. > How can i use this intermediate table to relate other entities? What do you mean? Normally you don't need to worry

Access to Many-To-Many intermediary table from django

2008-12-10 Thread nucles
Hello, If we create 2 models with many-to-many relationship django creates the intermediary table automatically for us. How can i use this intermediate table to relate other entities? Can i access to the primary field of the intermediary table? Should i create two One-to-Many relations manually