Reputation: 2325
Is there any custom widget (or a special magic way) to upload multiple files (or a whole folder!) through one form field? I have tried this multifile widget but it uses many simple FileFileds.
Upvotes: 7
Views: 10878
Reputation: 594
HTML 5 now allows for multiple file uploads in a single form control.
http://www.w3.org/TR/html-markup/input.file.html#input.file.attrs.multiple
Upvotes: 11
Reputation: 144
https://github.com/tstone/django-uploadify is a reusable Django app that integrates http://uploadify.com.
From Uploadify's website:
Uploadify is a jQuery plugin that integrates a fully-customizable multiple file upload utility on your website. It uses a mixture of Javascript, ActionScript, and any server-side language to dynamically create an instance over any DOM element on a page.
Upvotes: 3
Reputation: 1806
As Daniel said, File Input fields cannot support more than one file. However, there are ways around this using Things like SWFUpload. How you might integrate that workflow into a Django application, I'm not too sure.
Upvotes: 3