[Answer]-Post more files – how to submit and catch

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

Leave a comment