Why it only allow single image uplad? #97
Replies: 2 comments
-
Hi, The django ImageField is, in the concept, an CharField that saves the path to file into the configured storage. One of the consequences of this behaviour of the ImageField, is: its accepts only one image (with widget or without it). To allow multiple images upload, in the case of django-admin, is create an another Model to stores image and uses (1-n relation) and uses the custom To allow multiple images upload outside of django-admin, currently i have no idea of how to do this using this library (and i create an issue #98 to investigate and create this feature). |
Beta Was this translation helpful? Give feedback.
-
For https://inventare.github.io/django-image-uploader-widget/array_field/tutorial/ |
Beta Was this translation helpful? Give feedback.
-
Hi
I have this setup, but the user can only upload 1 file. How to enable multiple image uploads?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions