I\'m having trouble passing through validation when using a FieldList with WTForms. I keep getting this error. {\'csrf_token\': [u\'CSRF token missing\'
Since version 1.0 the new way to achieve this is as follows:
This will disable the CSRF token for all instances of your Form, so be careful to only use it as a subform.
class MyForm(FlaskForm):
class Meta:
csrf = False
myfield = StringField("A Field")