Re: Model Save with Updated Foreign Key

2009-02-02 Thread Jeff
Nevermind. I had overriden the get_query_set with a custom manager that only returned a subset of the CEOs. Word to the wise. On Feb 2, 1:04 pm, Jeff wrote: > So I have two models a CEO model: > class Ceo (models.Model): >     first_name = models.CharField(max_length=63) >     last_name = models

Model Save with Updated Foreign Key

2009-02-02 Thread Jeff
So I have two models a CEO model: class Ceo (models.Model): first_name = models.CharField(max_length=63) last_name = models.CharField(max_length=63) website = models.URLField() company_name = models.CharField(max_length=63, unique=False) company_address = models.ForeignKey(Addr