Hi I have an array of checkboxes e.g.
This will fix your problem,
some_var = request.POST.getlist('checks[]')
If you write some_var = request.POST.getlist('checks') may not work properly.
some_var = request.POST.getlist('checks')