Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-09 Thread ristretto.rb
Wow, Karen, you're amazing. Thanks for that. I can say I learned a lot about Django today with your help. thanks!! On Jul 9, 6:38 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Wed, Jul 9, 2008 at 12:57 AM, ristretto.rb <[EMAIL PROTECTED]> > wrote: > > > I'm using the svn version.  I updat

Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread Karen Tracey
On Wed, Jul 9, 2008 at 12:57 AM, ristretto.rb <[EMAIL PROTECTED]> wrote: > I'm using the svn version. I updated this morning. I can't remember > if I was getting the error before I updated, or not. > That ticket I pointed to identifies r7710 as a revision where this problem did not exist. With

Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread ristretto.rb
I'm using the svn version. I updated this morning. I can't remember if I was getting the error before I updated, or not. I have spent the day tracking this down (it's taken me all day because I don't know Django or Python very well, and I haven't been able to find a comprehensive IDE that is wo

Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread Karen Tracey
On Tue, Jul 8, 2008 at 9:57 PM, ristretto.rb <[EMAIL PROTECTED]> wrote: > > More details. I'm using MySQL at the moment (but with a plan to move > to Postgresql.) The association table has a number of rows loaded > through these models, but not through my Django app directly. I used > the Model

Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread ristretto.rb
More details. I'm using MySQL at the moment (but with a plan to move to Postgresql.) The association table has a number of rows loaded through these models, but not through my Django app directly. I used the Model classes in a script to pre load a bunch of data. Could this be the problem? On

Re: In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread ristretto . rb
OK, I took core=True off, and added it to the reference_no field. The problem seems to go away for the case when no there are no pre-existing joins. Clearly, I don't understand what core is for. I'll read the docs again, and see if it makes sense. However, it still errors with {'jointable.0.i

In admin, unable to save many-to-many relation objects with intermediate table

2008-07-08 Thread ristretto . rb
Hello, I'm stuck. Any help will be much appreciated. I followed http://www.djangoproject.com/documentation/models/m2m_intermediary/ to make a Many-to-many relationship via an intermediary table. class LeftSide(models.Model): : class RightSide(models.Model): : class JoinTable(models.Model):