This [example][1] to set up a form with WTForms and SQLAlchemy in Flask and add a QuerySelectField to the form works. I am not using flask.ext.sqlalchemy
, my code:
ContentForm = model_form(Content, base_class=Form)
ContentForm.author = QuerySelectField('Author', get_label="name")
myform = ContentForm(request.form, content)
myform.author.query = query_get_all(Authors)
Now I want to set the default value of the QuerySelectField's selectlist.
Tried passing a default
kwarg in QuerySelectField and setting selected
attributes. Nothing worked. Am I missing something obvious? Can someone help?
TypeError: 'ContentForm' object is not callable
exception... – Callant