1👍
✅
I’m also doing that when I split the transaction by envelope so it’s possible to save like that:
def view_name(request):
if request.method == 'POST':
images = request.POST.getlist('images[]')
for i in range(len(images)):
//do forloop here
Source:stackexchange.com