How do I get the values of all selected checkboxes in a Django request.POST? March 26, 2023 by Tarik Try this: some_var = request.POST.getlist('checks') some_var will contain [1,3,4] (those values that were checked)