Re: Changing Image in admin deletes the rest - expected behaviour?

2009-02-09 Thread James Bennett
On Mon, Feb 9, 2009 at 6:39 AM, phoebebright wrote: > In admin, if I change the content of one pic it blanks the rest. Is > this expected behaviour? Generally, when you think you've found a bug, searching the Django bug tracker will turn up useful information, as in

Changing Image in admin deletes the rest - expected behaviour?

2009-02-09 Thread phoebebright
Model: class Car(models.Model): ... lots of fields ... pic1 = models.ImageField(blank=True, upload_to='pics') pic2 = models.ImageField(blank=True, upload_to='pics') pic3 = models.ImageField(blank=True, upload_to='pics') pic4 = models.ImageField(blank=True, upload_to='pics')