Opened 15 years ago
Closed 15 years ago
#13255 closed (duplicate)
HTML5 Multiple File upload support
Reported by: | Jari Pennanen | Owned by: | nobody |
---|---|---|---|
Component: | Forms | Version: | |
Severity: | Keywords: | html5 | |
Cc: | Jari Pennanen | Triage Stage: | Unreviewed |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Django backend does not support multiple file field in HTML5, currently implemented by Chrome.
Here is excerpt of HTML5 how it is done:
<form action='#' method='post' enctype='multipart/form-data'> <input name='uploads' type=file multiple> <input type='submit'> </form>
I have not tested what happens in Django when using above, but nevertheless there should be new form fields and model fields for this.
More details see blog post uploading multiple files using html5 and W3 File Upload State.
Note:
See TracTickets
for help on using tickets.
Duplicate of #12446.