[Answered ]-Django multiple image uploading store uploaded image in a list

2👍

You can’t upload files with a GET request, only with a POST. And the files will then be found in request.FILES, so you can iterate over request.FILES.getlist('image') directly.

Leave a comment