Re: edit_inline and models with FileField(core=True)

2008-04-03 Thread Karen Tracey
On Thu, Apr 3, 2008 at 9:28 AM, Kip Parker <[EMAIL PROTECTED]> wrote: > Thanks, that's the one! I'm a bit wary of using the branches for > production sites, do you have any experience of using the newforms- > admin branch? > Personally I've been using newforms-admin for months and have found it

Re: edit_inline and models with FileField(core=True)

2008-04-03 Thread Kip Parker
Thanks, that's the one! I'm a bit wary of using the branches for production sites, do you have any experience of using the newforms- admin branch? On Apr 3, 1:51 pm, "Karen Tracey" <[EMAIL PROTECTED]> wrote: > On Wed, Apr 2, 2008 at 3:18 PM, Kip Parker <[EMAIL PROTECTED]> wrote: > > > This model

edit_inline and models with FileField(core=True)

2008-04-02 Thread Kip Parker
This model is edited inline with the ImageField being the only one with core=True. class Image(models.Model): image = models.ImageField(upload_to="images", core=True) caption = models.CharField(blank=True, max_length=250) artist = models.ForeignKey(Artist,