views:

30

answers:

1

Hi,

I'm playing around with swfupload but I think it's a bit hard to integrate it in the django admin of a photo app of mine. So now I'm looking for an upload tool that opens the local filesystem in the browser an let you select files to be uploaded. I've seen this quite often in such online photo-developing-services...any ideas?

A: 

Probably I am missing something... Why not using django FileField ?

http://docs.djangoproject.com/en/dev/ref/models/fields/#django.db.models.FileField

juanefren
because it sucks if you want to upload 100 files and you have to upload them manually and you have to wait for each file indiviudally to be uploaded.
jmoritz
oh ok! I get it now, once a time I had a similar problem having to upload lots of files. What I did was to upload a zip file, and then unzip in the server, but not sure if that meets your requirements.
juanefren