Re: Django admin - Edit parent model and related models on the same page

2010-06-29 Thread derek
On Jun 28, 1:48 am, DoubleD wrote: > I want to be able to edit all data on one page. How can i achieve > this ? Should i modify my models? If so, then how should i modify > them? > > class TextStyle(models.Model): >     color = models.CharField(_("color"), max_length=7) >     style = models.CharFi

Django admin - Edit parent model and related models on the same page

2010-06-27 Thread DoubleD
I want to be able to edit all data on one page. How can i achieve this ? Should i modify my models? If so, then how should i modify them? class TextStyle(models.Model): color = models.CharField(_("color"), max_length=7) style = models.CharField(_("style"), max_length=30) typeface = m