caktus / django-sticky-uploads

Enhanced file input widget for Django which uploads the file in the background and retains value on form errors.
BSD 3-Clause "New" or "Revised" License
32 stars 9 forks source link

Multiple File Uploads #3

Open mlavin opened 11 years ago

mlavin commented 11 years ago

Modern browsers support the multiple attribute http://www.w3schools.com/tags/att_input_multiple.asp. It might be worth investigating supporting this. Currently there is no equivalent Django form field for multiple files so that would need to be added as well.

vstoykov commented 8 years ago

There is django-multiupload (https://github.com/Chive/django-multiupload) for uploading multiple files. Probably it can be integrated.