views:

23

answers:

1

Hi there

I want to upload images to a gallery app. I want the user to be able to either load images normaly, or upload on zip file containing all the images for that gallery. Then it must be uncompressed and all images must be added to that model. This is for the admin site.

Any ideas?

+1  A: 

You could either use the existing django-app django-photologue which enables you to do that or have a look at how it is implemented there: https://code.google.com/p/django-photologue/source/browse/trunk/photologue/models.py. If you see that photlogue is lacking some of the funtionality you need, you could also subclass and extend photologue's models in your app!

lazerscience
thanks!just found this http://stackoverflow.com/questions/925305/uploading-multiple-images-in-django-admin
Harry