Hi I have an array of checkboxes e.g.
Try this:
some_var = request.POST.getlist('checks')
some_var will contain [1,3,4] (those values that were checked)
some_var
[1,3,4]
This will fix your problem,
some_var = request.POST.getlist('checks[]')
If you write some_var = request.POST.getlist('checks') may not work properly.