Django: populate multiple image upload with initial data

I have an image form field that accepts multiple images like so:

images = forms.ImageField(widget=forms.ClearableFileInput(attrs={'class': 'form-control', 'multiple': True}), required=False)

Now when you use a ClearableFileInput with an ImageField that accepts one image and populate it with initial data, it renders as something like this:

ClearableFileInput

I am wondering if it is possible to achieve a similar result with an ImageField that accepts multiple files?
I.e. is it possible to populate the above field with initial data?

Back to Top