Re: TABULAR ImageField gets deleted

2006-07-12 Thread Enrico
Hi Joshua, That's exactly what happened to me, maybe we should open a ticket... Thanks for your workaround, it worked. I didn't need another field, but it wouldn't hurt to add a description, then I made it "core" and now it works. Regards. Enrico --~--~-~--~~~---

Re: TABULAR ImageField gets deleted

2006-07-11 Thread Joshua Tacoma
I found this problem once myself: 1. Add a news_pic, upload the image. 2. Go to edit the parent news item, make some changes, save it. 3. Discover the image has been deleted. I dealt with it by moving core=True to another field, like 'title' or 'tags'. Notice that in step 2 the news_pic is displa

TABULAR ImageField gets deleted

2006-07-11 Thread Enrico
Hi, I'm loosing my pic when I edit the model on the admin in TABULAR mode. I have the following model: class news(models.Model): name = models.CharField(maxlength=60) pub_date = models.DateField(default=datetime.now) content = models.TextField() class Admin: