This answer addresses what I'm trying to accomplish: Post the checkboxes that are unchecked
Given the following form fields:
auto = BooleanField('Is autonomous working?', default=False)
beacon = BooleanField('Can it push the beacon?', default=False)
I get a 400 bad request as I am trying to get data from the form in my view that isn't there because the POST doesn't send the boolean field data when the box is unchecked (False)
Looking at the appropriate way to handle this with wtforms and am having trouble finding a solution. Thanks for any insight.