Hi, I noticed that Form is not handling values correctly with accents or utf8 characters.
using a simple form with the string: acción
controller:
form_lugar = Form([Field('nombre', 'string')], formstyle=FormStyleBootstrap4)
if form_lugar.accepted:
print(form_lugar.vars)
print(request.forms.get('nombre'))
the following prints this:
{'nombre': None, '_formname': 'no_table', '_formkey': 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0cyI6IjE2NTk5OTg1ODEuMDE4NTIyIn0.z3mJs_ACe6i1SY4i4_Hz67PwXbnIRH3qzJqtXXRqnOE'}
None
Any help is appreciated.
Cheers.
Chris.