Re: ModelMultipleChoiceField in admin interface

2009-01-13 Thread Daniel Roseman
On Jan 13, 8:26 am, Matias Surdi wrote: > hmm... Not really... from your point of view, think about this:  I want > to edit the children from the parent admin view, and *not* assign > parents to children from children's admin view > > Do you see? the relation is the

Re: ModelMultipleChoiceField in admin interface

2009-01-13 Thread Matias Surdi
Daniel Roseman escribió: > On Jan 12, 5:38 pm, Matias Surdi wrote: >> Hi, >> >> I've two models related by a ForeignKey field. >> >> I'd like to have the possibility of adding child objects (side "One" of >> the relation) from the admin interface of the parent ("Many" side

Re: ModelMultipleChoiceField in admin interface

2009-01-12 Thread Daniel Roseman
On Jan 12, 5:38 pm, Matias Surdi wrote: > Hi, > > I've two models related by a ForeignKey field. > > I'd like to have the possibility of adding child objects (side "One" of > the relation) from the admin interface of the parent ("Many" side of the > relation). > > Example:

ModelMultipleChoiceField in admin interface

2009-01-12 Thread Matias Surdi
Hi, I've two models related by a ForeignKey field. I'd like to have the possibility of adding child objects (side "One" of the relation) from the admin interface of the parent ("Many" side of the relation). Example: class Child(models.Model): name = models.CharField(max_length=10)