Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uploading multiple files in Django through one form field

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.

like image 612
Rince Avatar asked Nov 10 '09 10:11

Rince


1 Answers

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

like image 184
TaoJoannes Avatar answered Sep 22 '22 02:09

TaoJoannes