I am writing my first Django application and one feature I want to include is the ability for each registered user to be able to upload multiple images. (By registered user, I just mean a typical "create username/password, wait for email notice, activate account".)
Each image would be automatically resized and a thumbnail created. I should also be able to edit and delete the image(s) in the admin. I like the simplicity of django-stdimage but it lacks multiple image support and has a <a href="http://code.google.com/p/django-stdimage/ issues/detail?id=22">known bug</a> that does not delete images when its object/row is deleted. Photologue looks massive but according to <a href="http:// stackoverflow.com/questions/1556279/integrating-photologue">this post</ a>, the author of Photologue recommends using django-imagekit in this situation because it was meant to be integrated into other applications as opposed to being a standalone application. According to django-imagekit's github.com page, it has the same <a href="https://github.com/jdriscoll/django-imagekit/issues/16">bug</a> as django-stdimage. …ugh. Any recommendations, considering my requirements? Thank you :) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.