I\'m using Bootstrap with Flask Python.
request.form.get(\"name\") #name is the name of the form element(checkbox)
you can try the following:
HTML: New entry
In flask:
value = request.form.getlist('check')
This will give you the value of the the checkbox. Here value will be a list.
value = [u'edit']
You can also get value of multiple checkboxes with same name attribute.