Re: Clearing ImageField from django admin

2009-05-08 Thread Alex Gaynor
On Fri, May 8, 2009 at 5:10 PM, Oleg Oltar wrote: > Didn't find solution yet. So if you can please help me! > > > On Wed, May 6, 2009 at 6:29 PM, Oleg Oltar wrote: > >> Hi! >> I am using ImageField to add optional images to my articles from admin. >> >> image2 = models.ImageField(upload_to="uplo

Re: Clearing ImageField from django admin

2009-05-08 Thread Oleg Oltar
Didn't find solution yet. So if you can please help me! On Wed, May 6, 2009 at 6:29 PM, Oleg Oltar wrote: > Hi! > I am using ImageField to add optional images to my articles from admin. > > image2 = models.ImageField(upload_to="upload", blank=True) > > I added one image from my server to this fi

Clearing ImageField from django admin

2009-05-06 Thread Oleg Oltar
Hi! I am using ImageField to add optional images to my articles from admin. image2 = models.ImageField(upload_to="upload", blank=True) I added one image from my server to this field Is there a way to remove the image. If i for example decided not to use the image on the article at all? Thanks, O