We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to use model_form with my models but when I try to call it with the request.form it raises the Field must be unbound
Could someone point me my mistake here, please
Thanks!
The text was updated successfully, but these errors were encountered:
Seems that is mandatory to specify the list of fields If I add the only param with the list of the fields I need to render it works
Is this correct?
Thanks
Sorry, something went wrong.
Hard to answer without sample code. Please provide code and reopen if you are still interested.
I just ran across the same issue.
It seems that this occurs when model_form is used on a model containing ObjectIdField().
class Form(db.Document): parent = db.ObjectIdField()
Will be handled in #243
No branches or pull requests
I'm trying to use model_form with my models but when I try to call it with the request.form it raises the Field must be unbound
Could someone point me my mistake here, please
Thanks!
The text was updated successfully, but these errors were encountered: