Re: Image Update with Django - Admin site

2012-05-22 Thread kenneth gonsalves
On Fri, 2012-05-18 at 02:42 -0700, nishad wrote: > 1. When i was uploaded/(browse) and saved an Article with an image > (.jpg) , for the first time it saves perfectly > as follows (smedia/images/misc/sample.jpg) > 2. For the second time i have tried to update some textual contents in > the arti

Re: Image Update with Django - Admin site

2012-05-18 Thread Phang Mulianto
hi, thats default behaviour of the image fields. The old image not removed, but still keep intact, and the new image user uploaded will be named with a _1.ext , _2.ext you must handle the saving yourselft to make it rewrite the old images. Check the snippet i use : http://djangosnippets.org/sni

Image Update with Django - Admin site

2012-05-18 Thread nishad
Hi... Am new to the Django community... Topic:- I have noticed an issue related to the image uploading and it saving with Django admin interface. Steps to trace the issue :- 1. When i was uploaded/(browse) and saved an Article with an image (.jpg) , for the first time it saves perfectly as f