My django application has a model with base64 encoded images.
I would like to add the option to my ListView to download all the displayed images to the location of the user's choice.
Should I create an AJAX view, or can jQuery take care of it?
I googled around and I saw some examples of serving a single file to download. But how do I serve all the images at the same time?