Top "Flask-wtforms" questions

Flask-WTF offers simple integration with WTForms.

Pre-Populate an edit form with WTForms and Flask

I am able to add a new entry to my database using WTForms and Flask and I can edit too, …

python flask jinja2 flask-wtforms flask-bootstrap
how to use QuerySelectField in flask?

I am trying to have a select field filled with the results of a sqlalchemy request in a flask form. …

python flask flask-sqlalchemy flask-wtforms
Importing flask.ext.wtf

I am using venv, and I develop using eclipse . I want to add a contact page . I did : $ . bin/activate $ …

python flask packages flask-wtforms python-venv
Dynamic default value setting for a flask form field

I am trying to set the default value for a string field in flask wtforms. The following is my code …

python flask jinja2 flask-wtforms
Flask WTF 'StringField' object has no attribute 'translate'

I am relatively new to Python, and I've been following the Miguel Grinberg Flask Mega-Tutorial. I have a very simple …

python flask flask-wtforms
login_required decorator from flask_login not redirecting to previous page

I am using flask_login for login and logout for an app but the redirection back to the previous page …

python flask flask-wtforms flask-login
Python Flask-WTF - use same form template for add and edit operations

I'm just getting started with Flask / Flask-WTF / SQLAlchemy, and most example CRUD code I see shows separate templates for adding / …

python flask flask-sqlalchemy flask-wtforms
WTForms: two forms on the same page?

I have a dynamic web-page that should process two forms: a login form and a register form. I am using …

python forms flask wtforms flask-wtforms
Filling WTForms FormField FieldList with data results in HTML in fields

I have a Flask app in which I can populate form data by uploading a CSV file which is then …

python flask wtforms flask-wtforms fieldlist
How do I validate wtforms fields against one another?

I have three identical SelectField inputs in a form, each with the same set of options. I can't use one …

python validation flask wtforms flask-wtforms