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

2008-07-09 Thread Rob Hudson
I just bumped into this last night and found that having core on the ForeignKey field cause it to not save the record. Try removing core=True and see if that helps. -Rob On Jul 8, 6:02 pm, "ristretto.rb" <[EMAIL PROTECTED]> wrote: > Hello, I'm stuck.  Any help will be much appreciated. > > I >

In admin, unable to save many-to-many relation objects with intermidiate 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):